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.
|
- <!--package_A/page/alltask/index.wxml-->
- <view class="task_container">
- <!-- 筛选条件 -->
- <view class="select_container">
- <Select data="{{sortList}}" data-type="sortStartTime" rangeKey="label" current="{{sortCurrent}}" bind:updateChange="updatePicker"></Select>
- <Select data="{{statusList}}" data-type="status" rangeKey="label" current="{{statusCurrent}}" bind:updateChange="updatePicker"></Select>
- <Select data="{{platformOptions}}" data-type="platformName" rangeKey="platformName" current="{{platformCurrent}}" bind:updateChange="updatePicker"></Select>
- <picker value="{{date}}" mode="date" bindchange="selectTime" style="width: 160rpx;padding-right: 20rpx;">
- <view wx:if="{{date}}">{{date}}</view>
- <view wx:else>日期</view>
- </picker>
- </view>
- <!-- 列表 -->
- <List id="list" class="task_list" url="{{current}}" bind:update-list="updateList" list="{{list}}" bind:reset-list="resetList" params="{{params}}">
- <view class="task_item" data-current="{{index}}" wx:for="{{list}}" wx:key="index">
- <image style="width:60rpx;height:60rpx;border-radius:50%;flex-shrink: 0;" src="{{item.avatar || '../../../assets/img/home.png'}}"></image>
- <view class="task_main" data-item="{{item}}" bindtap="showDetail">
- <task-info data="{{item}}" type="list"></task-info>
- </view>
- </view>
- </List>
- </view>
|