diff --git a/yanzhu-ui-vue3/src/views/manage/proProjectInfoSubdeptsUsers/index.vue b/yanzhu-ui-vue3/src/views/manage/proProjectInfoSubdeptsUsers/index.vue index 877d76e8..37769c67 100644 --- a/yanzhu-ui-vue3/src/views/manage/proProjectInfoSubdeptsUsers/index.vue +++ b/yanzhu-ui-vue3/src/views/manage/proProjectInfoSubdeptsUsers/index.vue @@ -56,7 +56,7 @@ 批量入场 - 同步百度人脸库 + 同步百度人脸库 @@ -429,13 +429,16 @@ const data = reactive({ prjWorkCategories: [], //项目人员岗位大类 prjWorkTypes: [], //项目人员岗位类型 isAdmin:userStore.isAdmin, + baiduFaceLoading:false, }) const { queryParams, form, rules } = toRefs(data) //同步百度人脸库 function handleSyncFace(){ + data.baiduFaceLoading = true updateBaiduFaceLibrary(queryParams.value.projectId).then(res=>{ + data.baiduFaceLoading = false proxy.$modal.msgSuccess('同步百度人脸库成功!') }); }