微信小程序可输入弹窗

微信小程序可输入弹窗_第1张图片

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

你可能感兴趣的:(微信小程序,小程序)