Browse Source

事件处理列表办理状态字段调整 事件指派列表字段调整

xiaowang-featrue
mk 10 months ago
parent
commit
46071579ce
  1. 3
      src/views/modules/shequzhili/Delivery/index.vue
  2. 11
      src/views/modules/shequzhili/eventHandling/index.vue

3
src/views/modules/shequzhili/Delivery/index.vue

@ -151,6 +151,9 @@
</template>
</el-table-column>
<el-table-column prop="operationStep" align="center" width="150" label="最新办理进展"
:show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="deptName" align="center" width="110" label="指派部门"
:show-overflow-tooltip="true">
</el-table-column>

11
src/views/modules/shequzhili/eventHandling/index.vue

@ -123,14 +123,11 @@
<el-table-column prop="limitTime" align="center" width="110" label="办结时限(部门)" :show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="status" align="center" width="110" label="办理状态"
<el-table-column prop="operationTypeName" align="center" width="110" label="办理状态"
:show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="operationStep" align="center" width="150" label="最新办理进展"
:show-overflow-tooltip="true">
<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="limitStatus" align="center" width="110" label="办理超期"
:show-overflow-tooltip="true">

Loading…
Cancel
Save