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