在进行vue开发中,一般会用到加载框,避免用户重复点击按钮提交
image.png
这里用到了mini-ui中的 Indicator 插件,
使用方法为:
弹出加载框: Indicator.open("加载中...");
关闭加载框: Indicator.close()
为了避免加载框被遮挡,需要定义:
<style>
.mint-indicator-wrapper {
z-index: 1000 !important;
}
.mint-indicator-mask {
z-index: 1000 !important;
}
</style>
网友评论