Add the following code to the hml file
<div class="toast-message-nodelete" if="{{showToast}}" @click="toast">
<text class="nodelete-text">
Loading中,请稍后!
</text>
</div>Copy codeCopy code
And also add following code to js file
export default {
data: {
playerType: 'watch',
showToast: false,
timer: null
},
// 提示内容显示控制
toast() {
this.showToast = !this.showToast;
this.toastTimeout = setTimeout(()=>{
this.showToast = !this.showToast;
clearTimeout(this.toastTimeout);
},1400)
}
}
Top comments (0)