@input事件 ,当键盘输入时,触发input事件,event.detail = {value}
<input class="uni-input" @input="onKeyInput()" />
场景
@input事件想要传递一个参数到方法中 但是同时还要保留原来返回的event
解决方法:$event
@input="onKeyInput($event,123)"
运用
效果图:

<view class="item" v-for="(item,index) in PickedList" :key="index">
<view class="itemTop">
<view class