| | |
| | | @click="statusClick(1)" |
| | | :class="{ active: search.queryType === 1 }" |
| | | class="box_head_item" |
| | | >已处理 {{ headData.noticeDealNum }}</view |
| | | >已处理</view |
| | | > |
| | | <view |
| | | @click="statusClick(2)" |
| | | :class="{ active: search.queryType === 2 }" |
| | | class="box_head_item" |
| | | >我发起的 {{ headData.noticeCreateNum }}</view |
| | | >我发起的</view |
| | | > |
| | | <view |
| | | @click="statusClick(3)" |
| | |
| | | <view class="box_list_item_nr_x"></view> |
| | | <view class="box_list_item_nr_text"> |
| | | <text class="time">{{ item.createDate }}提交</text> |
| | | <text class="btn" @click="handleAppr(item)">去处理</text> |
| | | <text v-if="item.status == '0'" class="btn" @click="handleAppr(item)">去处理</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | <view v-if="dataList.length === 0" style="text-align: center;"> |
| | | <image src="@/static/empty.png" style="width: 320rpx;margin: 120px auto 0" mode="widthFix" /> |
| | | <view class="placeholder9 fs24">暂无数据</view> |
| | | </view> |
| | | </view> |
| | | <!-- 筛选 --> |
| | |
| | | }).then(res => { |
| | | this.dataList = [...this.dataList, ...res.data.records] |
| | | this.dataList.forEach(i => { |
| | | i.param1 = JSON.parse(i.param1) |
| | | if(i.param1){ |
| | | i.param1 = JSON.parse(i.param1) |
| | | } |
| | | }) |
| | | console.log('dataList', this.dataList) |
| | | }) |