Browse Source

调整接受人员信息

luckysheet-xiaowang-Intelligen
是小王呀\24601 7 months ago
parent
commit
a40239d4de
  1. 2
      src/views/modules/base/smartExcel/cpts/acceptingPersonel.vue
  2. 9
      src/views/modules/base/smartExcel/cpts/excel-info.vue

2
src/views/modules/base/smartExcel/cpts/acceptingPersonel.vue

@ -32,7 +32,7 @@
</el-form>
<el-table v-if="showType=='info'" :data="tableData" border class="m-table-item" style="width: 80%;" :height="maxTableHeight" >
<el-table-column label="序号" fixed="left" type="index" align="center" width="80" />
<el-table-column prop="renwu" align="center" :show-overflow-tooltip="true" label="第一接收人">
<el-table-column prop="userName" align="center" :show-overflow-tooltip="true" label="第一接收人">
</el-table-column>
<el-table-column prop="renwu" align="center" :show-overflow-tooltip="true" label="转派给">
</el-table-column>

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

@ -51,7 +51,7 @@
<div>{{formData.totalNum}}</div>
<el-button @click="oncClickInfo('info')" style="margin-left: 10px;"
type="text">查看接收人员名单</el-button>
<el-button @click="oncClickInfo('adjust')" type="text">调整收人人员</el-button>
<el-button @click="oncClickInfo('adjust')" type="text">调整接受人员</el-button>
</div>
</el-form-item>
@ -91,7 +91,7 @@
<excel-summary @close="closeSummary" :summaryDetal=summaryDetal></excel-summary>
</div>
<div class=''>
<el-dialog title="调整接收人员" v-if="showPersonel" :visible.sync="showPersonel" width="50%" :close-on-click-modal="false">
<el-dialog :title="title" v-if="showPersonel" :visible.sync="showPersonel" width="50%" :close-on-click-modal="false">
<acceptingPersonel :showType="showType" :acceptingId="formData.acceptingId" :taskId="taskId"
@handelPersonel="handelPersonel"></acceptingPersonel>
</el-dialog>
@ -107,6 +107,7 @@ import { mapGetters } from 'vuex'
export default {
data() {
return {
title:"调整接受人员",
taskId:"",
showType:"",
showPersonel:false,
@ -144,6 +145,10 @@ export default {
oncClickInfo(value){
this.taskId=this.formData.id
this.showType=value
if (value=="info") {
this.title="查看接收人员名单"
}
this.showPersonel=true
},
handelClickShowSummary(value){

Loading…
Cancel
Save