|
@@ -13,14 +13,14 @@
|
|
|
<view class="search-bar flex-row">
|
|
|
<image class="search-img" src="../../../images/welfareMall/search.png" />
|
|
|
<view class="search-text flex-row">
|
|
|
- <picker mode="date" value="{{startDate}}" bindchange="bindStartDateChange">
|
|
|
+ <picker mode="date" value="{{startDate}}" bindchange="bindStartDateChange" start="2022-01-01">
|
|
|
<view class="search-date flex-row">
|
|
|
<view class="picker" wx:if="{{startDate == null || startDate == ''}}">分账时间起期</view>
|
|
|
<view class="picker" wx:else>{{startDate}}</view>
|
|
|
</view>
|
|
|
</picker>
|
|
|
~
|
|
|
- <picker mode="date" value="{{endDate}}" bindchange="bindEndDateChange">
|
|
|
+ <picker mode="date" value="{{endDate}}" bindchange="bindEndDateChange" start="2022-01-01">
|
|
|
<view class="search-date flex-row">
|
|
|
<view class="picker" wx:if="{{endDate == null || endDate == ''}}">分账时间止期</view>
|
|
|
<view class="picker" wx:else>{{endDate}}</view>
|