diff --git a/src/api/system/userInfo.js b/src/api/system/userInfo.js
index 60a361d..67e6b1b 100644
--- a/src/api/system/userInfo.js
+++ b/src/api/system/userInfo.js
@@ -46,6 +46,15 @@ export function resetPwd(data) {
})
}
+// 授予更新人脸权
+export function updateIsFace(data) {
+ return request({
+ url: '/system/user/updateIsFace',
+ method: 'post',
+ data: data
+ })
+}
+
// 用户密码修改
export function updateUserPwd(data) {
return request({
@@ -97,3 +106,12 @@ export function getPersonSelect(query) {
params: query
})
}
+
+// 审核
+export function checkPersonAssignment(data) {
+ return request({
+ url: '/system/user/checkPersonAssignment',
+ method: 'post',
+ data: data
+ })
+}
diff --git a/src/views/process/evection/index.vue b/src/views/process/evection/index.vue
index 832ac5c..c4ee568 100644
--- a/src/views/process/evection/index.vue
+++ b/src/views/process/evection/index.vue
@@ -483,7 +483,7 @@ export default {
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
- const Id = row.uuId;
+ const Id = row.uuid;
getEvection(Id).then(response => {
this.form = response.data;
let num = [];
@@ -573,7 +573,7 @@ export default {
},
/** 删除按钮操作 */
handleDelete(row) {
- const Ids = row.uuId;
+ const Ids = row.uuid;
this.$modal.confirm('是否确认删除该申请?').then(function () {
return delEvection(Ids);
}).then(() => {
diff --git a/src/views/system/userInfo/index.vue b/src/views/system/userInfo/index.vue
index 8fb5df5..de0e690 100644
--- a/src/views/system/userInfo/index.vue
+++ b/src/views/system/userInfo/index.vue
@@ -47,7 +47,15 @@
-
+
+
+ {{ '待审核' }}
+ {{ '已采集/通过' }}
+ {{ '已采集/不通过' }}
+ {{'未采集'}}
+
+
+
重置密码
+
+ 人脸权限录入权限
+
+ 审核
+
@@ -176,12 +201,61 @@
+
+
+
+
+
+
+ 无图片
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无图片
+
+
+
+ {{form.collectionTime}}
+
+
+
+
+
+