uniapp showToast微信里只能显示两行提示文案,但是抖音里只能显示几个字
抖音和微信内,弹窗提示文案显示不一致,抖音里显示文案偏大,显示不全
解决办法:
通过编译判断,微信使用原来的showToast ,抖音里使用showModal
this.showToast(res.msg)
//弹窗提示,兼容抖音小程序
Vue.prototype.showToast=function(res){
//#ifndef MP-TOUTIAO
uni.showToast({
title: res,
icon: 'none',
duration: 3000
});
//#endif
//#ifdef MP-TOUTIAO
uni.showModal({
content:res,
showCancel:false,
confirmColor:'#000'
});
//#endif
}
给心灵一个纯净空间,让思想,情感,飞扬!