- <view class="plan-time">
- <view class="plan-time-txt">{{startS}} — {{endS}}</view>
- <scroll-view class="time-filter" scroll-x scroll-with-animation='true' show-scrollbar='{{false}}' enhanced>
- <view class="time-wraper" wx:for="{{filterArr}}" wx:key="index"
- bind:tap="clickTime" data-index="{{index}}">
- <view class="{{index==active?'time-item-active':'time-item'}}" >
- {{index == 0 ? '全部' : item.week}}
- <view class="time-date" wx:if="{{index!=0}}">{{item.day}}</view>
- </view>
- </view>
- </scroll-view>
- </view>
|