// 定义loading加载层
starVideotLoading() {
var that = this
that.videoLoading = this.$loading({
lock: true, //是否锁定
text: "拼命加载中...", //显示在加载图标下方的加载文案
spinner: 'el-icon-loading',
target: document.querySelector('.video_loading'), //设置加载动画区域 添加了target属性就可以设置局部区域,不添加就默认全局区域
background: 'rgba(0,0,0,.5)', //遮罩背景色
});
},
//定义关闭loading加载层
endVideoLoading() {
var that = this
that.videoLoading.close();
},
03-03
832

02-16
2463

“相关推荐”对你有帮助么?
-
非常没帮助
-
没帮助
-
一般
-
有帮助
-
非常有帮助
提交