纸通宝小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

14 lines
822 B

<!-- 底部弹出窗口,选择工厂--->
<view class="cu-modal bottom-modal {{modalName=='bottomModal'?'show':''}}" bindtap="hideModal">
<view class="cu-dialog">
<view class="cu-bar bg-white" style="min-height:90rpx;height:90rpx;border-bottom:1px solid #f3f3f3">
<view class="action text-grey" style="font-size:16px;margin-left:16rpx" bindtap="hideModal">取消</view>
<view class="action text-blue" style="font-size:16px;margin-right:16rpx" bindtap="confrimModal">确定</view>
</view>
<picker-view indicator-style="height:45px;" style="width:100%;height:225px;" value="{{value}}" bindchange="onChange">
<picker-view-column>
<view wx:for="{{dataList}}" wx:key="index" style="line-height: 45px">{{item.text}}</view>
</picker-view-column>
</picker-view>
</view>
</view>