a1300399510@qq.com 提交于 2023/04/03 -16:00:02

This commit is contained in:
2023-04-03 16:00:14 +08:00
parent 5d09f6c635
commit 62a15f5a88
5 changed files with 56 additions and 59 deletions

View File

@@ -43,8 +43,24 @@ function copy(value, message) {
copyInput.remove();
if (message) this.$message.success(message);
}
export { skipUrl, pageStop, pageMove, goTologin, copy }
// 启动加载中
function startupUnderLoading(that) {
that.loading = that.$loading({
lock: true,
text: '加载中...',
background: 'rgba(0, 0, 0, 0.7)'
});
}
// 关闭加载中
function closeUnderLoading(that) {
that.loading.close();
}
export { skipUrl, pageStop, pageMove, goTologin, copy, startupUnderLoading, closeUnderLoading }