This commit is contained in:
xiaoronghao
2023-04-11 17:56:16 +08:00
parent 5a6d83cc06
commit d82c425491
15 changed files with 228 additions and 157 deletions

View File

@@ -48,6 +48,8 @@ function copy(value, message) {
// 启动加载中
function startupUnderLoading(that) {
// this.
that.loading = that.$loading({
lock: true,
text: '加载中...',
@@ -57,7 +59,7 @@ function startupUnderLoading(that) {
// 关闭加载中
function closeUnderLoading(that) {
that.loading.close();
that.loading && that.loading.close();
that.loading = null
}