element的loading局部加载

this.$nextTick(() => {
	  // 加载loading
      this.loading = this.$loading({
        lock: true,
        text: 'Loading',
        spinner: 'el-icon-loading',
        background: 'rgba(0, 0, 0, 0.7)',
        target: document.querySelector('.dialog-box-distinguish') // 在指定得到元素上显示loading,要设置下相对定位
      });
})
// 关闭loading
	this.loading.close();
<style lang="scss" scoped>
	.dialog-box-distinguish {
		position: relative;
	}
</style>

上一篇:JSP页面使用EL表达式不显示实际数据


下一篇:Java项目:基于java+springboot的企业销售及购物信息网站(源码+系统+mysql数据库+Lw文档)