| 12345678910111213141516171819202122232425 |
- <!--index.wxml-->
- <view class="wrap">
- <view class="wrap_nr">
- <view class="time_list">
- <view class="time_item" wx:for="{{ dataList }}" wx:key="index">
- <view class="item_t">
- <view class="col_text">开始时间:{{ item.begin_at }}</view>
- <view class="col_text">结束时间:{{ item.end_at }}</view>
- <view class="col_text">可用状态:{{ item.status ? "可用" : "禁用" }}</view>
- </view>
- <view class="item_b">
- <view class="ac_btn" bind:tap="toAddDetail" data-id="{{ item.id }}">编辑</view>
- <view class="ac_btn del" bind:tap="toDelItem" data-id="{{ item.id }}">删除</view>
- </view>
- </view>
- </view>
- </view>
- <view class="actions_wrap">
- <view class="btn" bind:tap="toAddDetail">添加</view>
- </view>
- </view>
- <!-- loading -->
- <!-- <van-overlay show="{{ loading }}" z-index="100">
- <van-loading custom-class="custom_loading" />
- </van-overlay> -->
|