优化loading组件

This commit is contained in:
TOP糯米 2023-04-08 16:07:07 +08:00
parent f0d16446c4
commit 3ac3f53338
2 changed files with 10 additions and 1 deletions

View File

@ -44,7 +44,7 @@ export default {
width: 270rpx;
margin: 0 auto;
transform: translateY(-50%);
background-color: #646464;
background-color: #4e4e4e;
box-sizing: border-box;
padding: 20rpx;
border-radius: 10rpx;

View File

@ -1,12 +1,21 @@
import $store from '@/store/index'
export default {
timer: null,
timeout: 10,
show(title) {
clearTimeout(this.timer);
$store.commit('loading/show', true);
if (title) {
$store.commit('loading/title', title);
}
// 10秒后自动hide
let that = this;
this.timer = setTimeout(() => {
that.hide();
}, this.timeout * 1000);
},
hide() {
clearTimeout(this.timer);
$store.commit('loading/show', false);
$store.commit('loading/title', "");
}