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.
24 lines
1.0 KiB
24 lines
1.0 KiB
<wxs src="../../../utils/filter.wxs" module="tool" />
|
|
<view class='wrap'>
|
|
<view>
|
|
<view class='date-show'>
|
|
<view class="iconfont icon-you-copy lt-arrow" bindtap='lastMonth'></view>
|
|
{{year}}年{{month}}月
|
|
<view class="iconfont icon-you rt-arrow" bindtap='nextMonth'></view>
|
|
</view>
|
|
</view>
|
|
<view class='header'>
|
|
<view wx:for='{{date}}' class='{{(index == todayIndex) && isTodayWeek ? "weekMark" : ""}}'>{{item}}<view></view></view>
|
|
</view>
|
|
<view class='date-box'>
|
|
<view bindtap="onTapDay" wx:for='{{dateArr}}' class='{{activeDay == item.date ? "nowDay" : ""}}' data-date='{{dates[item.date]}}'
|
|
data-item="{{item}}" style="flex-direction:column">
|
|
<view class="date-head{{dates[item.date]&&item.haveStock?'':' disable'}}" >
|
|
<view>{{item.dateNum}}</view>
|
|
</view>
|
|
|
|
<view class="date-dot-tip" wx:if="{{item.haveStock}}">·</view>
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|