1
0
forked from dyf/APP

6155完成部分协议对接

This commit is contained in:
liub
2025-08-15 16:39:00 +08:00
parent 6ef2bb08b9
commit e95b2466e1
10 changed files with 871 additions and 708 deletions

View File

@ -8,8 +8,15 @@ export const showLoading = (ev,options) => {
if(!options){
options={a:1};
}
if(!options.text && options.title){
options.text=options.title;
}
ev.$refs.loading.show(options)
if(!options.text){
options.text="请稍候...";
}
ev.$refs.loading.show(options);
}