https://developers.weixin.qq.com/miniprogram/dev/component/input.html
<input bindinput=“changeValue”></input>
=============================
changeValue: function (e) {
// return 1321
// 也可以返回一个对象
return {
value: 1321,
cursor: e.detail.cursor
}
===========================
input里不管输入什么内容最终都会变成1321