Browse Source

央视更改+指派状态

feature_dlt_taidong
是小王呀\24601 1 year ago
parent
commit
c04bec24e7
  1. 11
      src/views/modules/shequzhili/Delivery/index.vue
  2. 22
      src/views/modules/shequzhili/analysis/index.vue
  3. 13
      src/views/modules/shequzhili/eventHandling/index.vue

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

@ -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">

22
src/views/modules/shequzhili/analysis/index.vue

@ -107,6 +107,7 @@
<el-table
:data="tableList"
style="width: 100%;"
height="300"
row-key="id"
border
default-expand-all
@ -114,37 +115,36 @@
<el-table-column
prop="level1"
label="一级分类"
sortable
width="150">
>
</el-table-column>
<el-table-column
prop="level2"
label="二级分类"
sortable
width="150">
>
</el-table-column>
<el-table-column
prop="level3"
label="三级分类"
sortable
width="150">
>
</el-table-column>
<el-table-column
prop="level4"
label="四级分类"
sortable
width="150">
>
</el-table-column>
<el-table-column
prop="eventCount"
label="事件数量"
sortable
width="150">
>
</el-table-column>
<el-table-column
prop="proportion"
label="同级占比"
sortable
>
<template slot-scope="scope">
{{ scope.row.proportion }}%

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

@ -116,13 +116,14 @@
<el-table-column prop="timeLimit" align="center" width="110" label="办结时限" :show-overflow-tooltip="true">
</el-table-column>
<el-table-column prop="statusName" align="center" width="110" label="办理状态"
<el-table-column prop="status" align="center" width="110" label="办理状态"
:show-overflow-tooltip="true">
<!-- <template slot-scope="scope">
<span v-if="scope.row.handlestatus === 0">联系当事人超期</span>
<span v-else-if="scope.row.handlestatus ===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="limitStatus" align="center" width="110" label="办理超期"
:show-overflow-tooltip="true">

Loading…
Cancel
Save