微信小程序可输入弹窗

在这里插入图片描述

 addWhite() {
    
    
    wx.showModal({
    
    
      title: '添加白名单',
      editable: true, // 可输入
      content: '',
      complete: (res) => {
    
    
        if (res.confirm) {
    
    
          if (!res.content) {
    
     // 输入的值
            wx.showToast({
    
    
              title: '请填写白名单',
              icon: 'error'
            })
            this.addWhite()
          }else {
    
    
			// 调接口
          }
        }
      }
    })
  },

猜你喜欢

转载自blog.csdn.net/weixin_43848576/article/details/131832811
今日推荐