|
|
@@ -17,10 +17,10 @@
|
|
|
<view class="box_num">{{ maintenanceCount }}</view>
|
|
|
<view class="box_info">维修中</view>
|
|
|
</view>
|
|
|
- <view class="bottom_box" :class="{ active: state === 3 }" @click="handleFilter(3)">
|
|
|
+ <!-- <view class="bottom_box" :class="{ active: state === 3 }" @click="handleFilter(3)">
|
|
|
<view class="box_num">{{ timeoutCount }}</view>
|
|
|
<view class="box_info">已超时</view>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
<view class="bottom_box" :class="{ active: state === 4 }" @click="handleFilter(4)">
|
|
|
<view class="box_num">{{ examineCount }}</view>
|
|
|
<view class="box_info">待审核</view>
|
|
|
@@ -53,10 +53,10 @@
|
|
|
<view class="box_num">{{ maintenanceCount }}</view>
|
|
|
<view class="box_info">维修中</view>
|
|
|
</view>
|
|
|
- <view class="types_box" :class="{ active: state === 3 }" @click="handleFilter(3)">
|
|
|
+ <!-- <view class="types_box" :class="{ active: state === 3 }" @click="handleFilter(3)">
|
|
|
<view class="box_num">{{ timeoutCount }}</view>
|
|
|
<view class="box_info">已超时</view>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
<view class="types_box" :class="{ active: state === 4 }" @click="handleFilter(4)">
|
|
|
<view class="box_num">{{ examineCount }}</view>
|
|
|
<view class="box_info">待审核</view>
|
|
|
@@ -106,7 +106,7 @@
|
|
|
<view class="time_type color_type" v-if="item.state === '转线下待审核'">转线下待审核</view>
|
|
|
<view class="time_type color_type2" v-if="item.state === '待审核'">待审核</view>
|
|
|
<view class="time_type color_type3" v-if="item.state === '已完成'">已完成</view>
|
|
|
- <view class="time_type" v-if="item.state === '待确认'">待确认</view>
|
|
|
+ <view class="time_type" v-if="item.state === '待支付'">待支付</view>
|
|
|
<view class="time_type color_type4" v-if="item.state === '已关单'">已关单</view>
|
|
|
<view class="time_type color_type4" v-if="item.state === '已取消'">已取消</view>
|
|
|
<view class="time_type color_type" v-if="item.state === '转线下'">转线下</view>
|
|
|
@@ -123,7 +123,7 @@
|
|
|
<!-- 部门 -->
|
|
|
<view class="item_box" v-if="item.userClass">
|
|
|
<view class="box_key">部门:</view>
|
|
|
- <view class="box_value">{{ item.userClass }}</view>
|
|
|
+ <view class="box_value">{{ item.userClass ? item.userClass : '未知' }}</view>
|
|
|
</view>
|
|
|
|
|
|
<!-- 报修电话 -->
|
|
|
@@ -205,7 +205,11 @@
|
|
|
<!-- 按钮区域 -->
|
|
|
<view class="item_btn">
|
|
|
<!-- 关闭按钮 -->
|
|
|
- <img v-if="item.state === '待接单'" src="../../static/images/repairsImg/close.png" @click.stop="handleClose(item)" />
|
|
|
+ <img
|
|
|
+ v-if="item.state === '待接单' || (item.state === '维修中' && btns.includes('表格编辑')) || (item.state === '待处理' && btns.includes('表格编辑'))"
|
|
|
+ src="../../static/images/repairsImg/close.png"
|
|
|
+ @click.stop="handleClose(item)"
|
|
|
+ />
|
|
|
<!-- 协作按钮 -->
|
|
|
<img
|
|
|
class="img"
|
|
|
@@ -214,13 +218,13 @@
|
|
|
@click.stop="handleHelp(item)"
|
|
|
/>
|
|
|
<!-- 延时按钮 -->
|
|
|
- <view
|
|
|
+ <!-- <view
|
|
|
class="btn_box type"
|
|
|
v-if="(item.state === '待接单' || item.state === '维修中') && btns.includes('延时') && current === 0"
|
|
|
@click.stop="handleDelay(item)"
|
|
|
>
|
|
|
延时
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
<!-- 接单按钮 -->
|
|
|
<view
|
|
|
class="btn_box type"
|