From 34707d0033cb329878870ffa0b479ad98b7ad7f7 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Sun, 29 Sep 2024 20:36:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=BA=E5=91=98=E8=AF=81=E4=B9=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/base/staff/index.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/base/staff/index.vue b/src/views/base/staff/index.vue index 129476b..734ee04 100644 --- a/src/views/base/staff/index.vue +++ b/src/views/base/staff/index.vue @@ -1009,6 +1009,11 @@ export default { }, //打开证书上传 openCertificate:_.debounce(function(row){ + let loading = this.$loading({ + lock: true, + text: "数据加载中,请稍候...", + background: 'rgba(0,0,0,0.2)' + }) this.title = "证书上传"; this.memberId = row.id; this.highImgList = []; @@ -1076,6 +1081,7 @@ export default { }) } }); + loading.close(); this.showCertificate = true; });