|
|
|
@ -128,11 +128,12 @@ |
|
|
|
</template> --> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="statusName" align="center" width="110" label="指派状态" :show-overflow-tooltip="true"> |
|
|
|
<!-- <template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.deliverystatus === 0">未指派</span> |
|
|
|
<span v-else-if="scope.row.deliverystatus ===1">已指派</span> |
|
|
|
<span v-else>--</span> |
|
|
|
</template> --> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.status === 'unassigned'">未指派</span> |
|
|
|
<span v-else-if="scope.row.status ==='assigned'">已指派</span> |
|
|
|
<span v-else-if="scope.row.status ==='closed_case'">已办结</span> |
|
|
|
<span v-else="scope.row.status ==='processing'">处理中</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="operationTypeName" align="center" width="110" label="办理状态" :show-overflow-tooltip="true"> |
|
|
|
<!-- <template slot-scope="scope"> |
|
|
|
@ -152,7 +153,7 @@ |
|
|
|
<!-- <el-button @click="handleDispose(scope.row)" type="text" size="small" class="">{{scope.row.deliverystatus==0?"派件":"办理"}}</el-button> |
|
|
|
--> |
|
|
|
<el-button @click="handleDispose(scope.row,'dispose')" type="text" size="small" v-if="(scope.row.status == 'processing'|| scope.row.status === 'assigned') && scope.row.operationType === '5'">处理</el-button> |
|
|
|
<el-button @click="handleDispose(scope.row,'assign')" type="text" size="small" v-if="scope.row.status =='unassigned'">派件</el-button> |
|
|
|
<el-button @click="handleDispose(scope.row,'assign')" type="text" size="small" v-if="scope.row.status =='unassigned'||scope.row.status =='processing'">派件</el-button> |
|
|
|
<el-button @click="handleDispose(scope.row,'check')" type="text" size="small" v-if="scope.row.operationType === '11'">审核</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|