ios中页面中使用 this.toast(信息)
this.closeToast() 无法关闭 toast 都是等待他自己关闭的
Vue.prototype.toast= function(msg,time=2000,icon = false){
// #ifdef APP-PLUS
plus.nativeUI.toast("<font style=\"font-size:14px;font-weight:bold\">"+msg+"</font>",
{type:'richtext',
verticalAlign:'center',
richTextStyle:{
align:'center'
}
});
// #endif
// #ifndef APP-PLUS
uni.showToast({
title : msg,
icon: icon ? icon : 'none',
duration:time
})
//#endif
}
Vue.prototype.closeToast= function(){
// #ifdef APP-PLUS
plus.nativeUI.closeToast();
// #endif
}
0 个回复