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.
8 lines
359 B
8 lines
359 B
<!--components/date_select.wxml-->
|
|
<scroll-view scroll-x class="date_select" enable-flex="{{true}}">
|
|
<view class="box box_{{index}} {{item.id == select_date ? 'select' : ''}}" wx:for="{{date_range}}" wx:key="id" id="{{item.id}}" bindtap='tap'>
|
|
<view class="show">{{item.show}}</view>
|
|
<view class="desc">{{item.desc}}</view>
|
|
</view>
|
|
</scroll-view>
|