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

}

 

posted @ 2022-06-29 14:22  Shimily  阅读(4149)  评论(0)    收藏  举报