|
|
|
@ -37,7 +37,7 @@ |
|
|
|
</el-col> |
|
|
|
<el-col :span="8"> |
|
|
|
<el-form-item label="任务类型"> |
|
|
|
<div>{{formData.type}}</div> |
|
|
|
<div>{{formData.type || '数据填报'}}</div> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="16"> |
|
|
|
@ -49,9 +49,7 @@ |
|
|
|
<el-form-item label="分发人员"> |
|
|
|
<div style="display: flex;flex-direction: row; align-items: center;"> |
|
|
|
<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> |
|
|
|
@ -107,7 +105,7 @@ import { mapGetters } from 'vuex' |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
title:"调整接受人员", |
|
|
|
title:"", |
|
|
|
taskId:"", |
|
|
|
showType:"", |
|
|
|
showPersonel:false, |
|
|
|
@ -137,16 +135,14 @@ export default { |
|
|
|
}, |
|
|
|
handelPersonel() { |
|
|
|
this.showPersonel = false; |
|
|
|
}, |
|
|
|
oncClickPersonel(){ |
|
|
|
this.showType="adjust" |
|
|
|
this.showPersonel=true |
|
|
|
}, |
|
|
|
oncClickInfo(value){ |
|
|
|
this.taskId=this.formData.id |
|
|
|
this.showType=value |
|
|
|
if (value=="info") { |
|
|
|
this.title="查看接收人员名单" |
|
|
|
if (value=="adjust") { |
|
|
|
this.title="调整接收人员名单" |
|
|
|
}else if(value === 'edit'){ |
|
|
|
this.title = '修改' |
|
|
|
} |
|
|
|
|
|
|
|
this.showPersonel=true |
|
|
|
|