提交 a011c05b 编写于 作者: 杜庆泉's avatar 杜庆泉

show loadding case add

上级 8d78c590
<template> <template>
<view> <view>
<page-head :title="title"></page-head> <page-head :title="title"></page-head>
<view class="uni-list">
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">是否显示透明蒙层</view>
<switch :checked="maskSelect" @change="maskChange"/>
</view>
<view class="uni-list-cell uni-list-cell-pd">
<view class="uni-list-cell-db">超长标题</view>
<switch :checked="titleSelect" @change="titleChange"/>
</view>
</view>
<view class="uni-padding-wrap"> <view class="uni-padding-wrap">
<view class="uni-btn-v"> <view class="uni-btn-v">
<button class="uni-btn" type="primary" @click="showLoading">显示 loading 提示框</button> <button class="uni-btn" type="primary" @click="showLoading">显示 loading 提示框</button>
...@@ -15,13 +25,29 @@ ...@@ -15,13 +25,29 @@
export default { export default {
data() { data() {
return { return {
title: 'loading' title: 'loading',
maskSelect:false,
titleSelect:false
} }
}, },
methods: { methods: {
maskChange: function (e : SwitchChangeEvent) {
this.maskSelect = e.detail.value
},
titleChange: function (e : SwitchChangeEvent) {
this.titleSelect = e.detail.value
},
showLoading: function() { showLoading: function() {
let titleVal = "三秒后自动关闭"
if(this.titleSelect){
titleVal = "超长文本内容,测试超出范围-超长文本内容,测试超出范围"
}
uni.showLoading({ uni.showLoading({
title: 'loading' title: titleVal,
mask:this.maskSelect
}); });
// #ifdef MP-ALIPAY // #ifdef MP-ALIPAY
...@@ -30,6 +56,11 @@ ...@@ -30,6 +56,11 @@
this.hideLoading(); this.hideLoading();
}, 3000) }, 3000)
// #endif // #endif
// #ifdef APP-PLUS
setTimeout(function() {
this.hideLoading();
}, 3000);
// #endif
}, },
hideLoading: function() { hideLoading: function() {
uni.hideLoading(); uni.hideLoading();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册