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.
18 lines
1.0 KiB
18 lines
1.0 KiB
<!--components/scan-code/scan-code.wxml-->
|
|
<!-- 底部弹出窗口,选择工厂--->
|
|
<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="onDateChange">
|
|
<picker-view-column>
|
|
<view wx:for="{{timeList}}" wx:key="index" class="text-lg" style="line-height: 45px">{{item.text}}</view>
|
|
</picker-view-column>
|
|
<picker-view-column>
|
|
<view wx:for="{{timePeriods}}" class="text-lg" wx:key="index" style="line-height: 45px">{{item.text}}</view>
|
|
</picker-view-column>
|
|
</picker-view>
|
|
</view>
|
|
</view>
|