guci-date
Version:
A golden bottle of sake costs ten thousand yuan, and a jade plate costs ten thousand yuan.
23 lines (17 loc) • 359 B
JavaScript
import { Loading } from 'element-ui';
let loading = null;
let startLoading = () => {
loading = Loading.service({
lock: true,
text: '加载中........',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.6)'
})
}
let endLoading = () => {
loading.close();
}
export default {
startLoading,
endLoading
}