微信小程式提示框

zhang8907xiaoyue發表於2020-12-09

1、確認框

wx.showModal({

     title: '',

     content: '',

     success: function (res) {

       if (res.confirm) {

         

       } else {/

         

       }

     }

   })

2、提示框

 wx.showToast({

     title: '成功',

     icon: 'success',

     duration: 2000//持續的時間

   })

3、等待框

wx.showToast({

     title: '等待...',

     icon: 'loading',

     duration: 2000//持續的時間

   })

4、長資訊提示框

wx.showToast({
          title: res.msg,
          icon: 'none',
          duration: 2000//持續的時間

        })

 

 

 

相關文章