微信小程序----picker组件(是一种从底部向上弹起的滚动选择器)
html部分:
<picker style="margin-left: 20rpx;" class="picker " bindchange="changeCategory" range-key="text" value="{{yjlxListIndex}}" range="{{yjlxList}}">
<view style="float: left;height: 80rpx;line-height: 80rpx;{{yjlxListIndex == 0?'color:#656262;':''}}" class="weui-input yujing">{{yjlxList[yjlxListIndex].text}}</view>
<view class="clearBoth"></view>
</picker>
js部分:
data:{
yjlxListIndex: 0,
yjlxList:[{
text:"请选择事故类别",
value:"0"
},{
text:"事故",
value:"1"
},{
text:"单方",
value:"2"
},{
text:"多方",
value:"3"
}],
},
changeCategory: function(e) {
this.setData({
yjlxListIndex: e.detail.value
})
//if(this.data.yjlxListIndex==1){
//this.setData({
// yjlxListIndextwo: 1,
// lists: [{ id: 0 }],
//})
//}
}
//传递参数可以这样传参
warnType: that.data.yjlxListIndex==0?"": that.data.yjlxList[that.data.yjlxListIndex].value,