Files
income_payments_applet/components/dateMonth/dateMonth.wxml
T

14 lines
646 B
Plaintext

<view class="i-modal-mask {{ visible ? 'i-modal-mask-show' : '' }}" catchtap='outClick'>
<view class="box">
<view class="title">{{year}}年{{month}}月</view>
<picker-view indicator-style="height: 50px;" style="width: 100%; height: 300px;" value="{{value}}" bindtap="ok"
bindchange="bindChange">
<picker-view-column>
<view wx:for="{{years}}" class="item" wx:key="item">{{item}}年</view>
</picker-view-column>
<picker-view-column wx:if="{{mode === 'month'}}">
<view wx:for="{{months}}" class="item" wx:key="item">{{item}}月</view>
</picker-view-column>
</picker-view>
</view>
</view>