From a7a686fd5264aa08686cbeae5c92b687122f8846 Mon Sep 17 00:00:00 2001 From: "lj7788@126.com" Date: Fri, 26 Sep 2025 16:57:12 +0800 Subject: [PATCH] =?UTF-8?q?9.26=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/manage/proProjectInfoSubdeptsUsers/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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('同步百度人脸库成功!') }); }