Browse Source

任务情况,汇总情况

feture-12345
是小王呀\24601 6 months ago
parent
commit
8a1de37ed6
  1. 6
      src/views/modules/base/smartExcel/cpts/excel-info.vue
  2. 8
      src/views/modules/base/smartExcel/index.vue

6
src/views/modules/base/smartExcel/cpts/excel-info.vue

@ -69,7 +69,7 @@
<el-form-item label="分发人员">
<div style="display: flex;flex-direction: row; align-items: center;">
<div>{{formData.totalNum}}</div>
<el-button @click="oncClickInfo('adjust')" type="text">调整接收人员</el-button>
<el-button @click="oncClickInfo('adjust')" type="text">[调整接收人员]</el-button>
</div>
</el-form-item>
</el-col>
@ -95,9 +95,9 @@
{{taskPeriod === 'once'?'一次性':`${scope.row.taskPeriodName}`}}
</template>
</el-table-column>
<el-table-column fixed="right" label="汇情况" align="center">
<el-table-column fixed="right" label="汇情况" align="center">
<template slot-scope="scope">
<el-button @click="handleInfo(scope.row)" type="text" size="small">{{
<el-button @click="handelClickShowSummary(scope.row)" type="text" size="small">{{
scope.row.resolveNum}}/{{ scope.row.totalNum }}</el-button>
<el-button @click="handelClickShowSummary(scope.row)" type="text"
size="small">查看</el-button>

8
src/views/modules/base/smartExcel/index.vue

@ -71,7 +71,13 @@
</template>
</el-table-column>
<el-table-column prop="resolveNum" align="center" width="110" label="任务进度" :show-overflow-tooltip="true">
<el-table-column prop="resolveNum" align="center" width="110" label="当前任务进度" :show-overflow-tooltip="true">
<template slot-scope="scope" >
<div style="color: blue;">
{{ scope.row.resolveNum }}/{{ scope.row.totalNum }}
</div>
</template>
</el-table-column>
<el-table-column prop="taskStateName" align="center" width="100" label="任务状态" :show-overflow-tooltip="true">

Loading…
Cancel
Save