// 输入框
bindKeyInput:function(e){
var that = this;
var kind = e.target.id;
switch (kind) {
case "input_wx":
that.setData({
user_wx: e.detail.value
})
break;
case "input_surname":
that.setData({
user_surname: e.detail.value
})
break;
case "input_pwd":
that.setData({
user_pwd: e.detail.value
})
break;
case "newInput_pwd":
that.setData({
valLocation: e.detail.value
})
break;
}
},

相关文章:

  • 2022-12-23
  • 2021-05-23
  • 2021-04-03
  • 2021-10-15
  • 2021-09-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
猜你喜欢
  • 2022-12-23
  • 2022-01-24
  • 2021-06-23
  • 2022-01-23
  • 2022-02-07
  • 2021-12-19
  • 2022-12-23
相关资源
相似解决方案