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; });