问题模块 框架类型 问题类型 操作系统 操作系统版本 手机型号 微信版本
客户端 微信小程序 Bug iOS 11.1.1 iphone6s 2.5.1
- 当前 Bug 的表现(可附上截图)
- 预期表现
不要严重抖动
- 复现路径
- 提供一个最简复现 Demo
bindInputTap(e) {
let shift = this.data.shift;
let inputName = e.detail.value;
let name = shift.name;
if (name !== inputName) {
shift.name = inputName;
this.setData({
shift: shift
});
}
},