详细问题描述
bug示意地址 http://122.114.216.78:9318/static/test.mp4
看过视频可知,滑动过快,触发不了@change事件,只有当滑动项停止后延迟近0.N秒后,才触发@change事件。在小程序上完全不是一个效果。
[可重现代码片段]
<view class="cu-form-group margin-top">
<view class="title">教育水平</view>
<picker @change="educationChange" :value="select_education_index" :range="eduList">
<view class="picker">
{{select_education_index >-1 ? eduList[select_education_index]:'请选择教育水平'}}
</view>
<input style="display: none;" name="employee_education" :value="eduList[select_education_index]"></input>
</picker>
</view>
eduList: ['初中', '高中', '中专', '大专', '大学', '硕士']
educationChange(e) {
this.select_education_index = e.detail.value > -1 ? e.detail.value : 0;
},
运行环境
H5
联系方式
2777314125@qq.com
2 个回复
maozai - 小程序开发者
小程序也延迟,现在都没修好
8***@qq.com
真机调试就很卡,模拟器里面还行