Commit 7a7d9661 authored by zhangjianqian's avatar zhangjianqian

应急处置功能

parent b3d696de
...@@ -197,15 +197,17 @@ ...@@ -197,15 +197,17 @@
<el-form-item label="转办记录" prop="transferRecord" :style="display"> <el-form-item label="转办记录" prop="transferRecord" :style="display">
<el-input v-model="form.transferRecord" type="textarea" placeholder="请输入转办记录" :disabled="readonly"/> <el-input v-model="form.transferRecord" type="textarea" placeholder="请输入转办记录" :disabled="readonly"/>
</el-form-item> </el-form-item>
<el-form-item label="任务状态" :style="display"> <el-form-item label="任务状态" :style="display" >
<el-select v-model="form.complainStatus" placeholder="请选择任务状态" :disabled="readonly">
<el-option <el-input v-model="form.complainStatus" placeholder="" :disabled="readonly"/>
v-for="dict in taskStateOptions" <!--<el-select v-model="form.complainStatus" placeholder="请选择任务状态" :disabled="readonly">-->
:key="dict.dictValue" <!--<el-option-->
:label="dict.dictLabel" <!--v-for="dict in taskStateOptions"-->
:value="dict.dictValue" <!--:key="dict.dictValue"-->
></el-option> <!--:label="dict.dictLabel"-->
</el-select> <!--:value="dict.dictValue"-->
<!--&gt;</el-option>-->
<!--</el-select>-->
</el-form-item> </el-form-item>
<el-form-item label="备注" prop="remarks"> <el-form-item label="备注" prop="remarks">
<el-input v-model="form.remarks" type="textarea" placeholder="请输入备注" :disabled="readonly"/> <el-input v-model="form.remarks" type="textarea" placeholder="请输入备注" :disabled="readonly"/>
...@@ -359,7 +361,6 @@ export default { ...@@ -359,7 +361,6 @@ export default {
this.form.complainAssignEnterproseName = obj.enterpriseName; this.form.complainAssignEnterproseName = obj.enterpriseName;
this.form.complainAssignEnterproseId = value; this.form.complainAssignEnterproseId = value;
getUserList(value).then(response => { getUserList(value).then(response => {
console.log(response.data)
//console.log(this.peopleList) //console.log(this.peopleList)
this.peopleList=response.data; this.peopleList=response.data;
}); });
...@@ -371,7 +372,6 @@ export default { ...@@ -371,7 +372,6 @@ export default {
}); });
this.form.complainAssignManId === value; this.form.complainAssignManId === value;
this.form.complainAssignMan = obj.nickName; this.form.complainAssignMan = obj.nickName;
console.log(this.form);
}, },
// 取消按钮 // 取消按钮
cancel() { cancel() {
...@@ -478,8 +478,10 @@ export default { ...@@ -478,8 +478,10 @@ export default {
const complainDealId = row.complainDealId || this.ids const complainDealId = row.complainDealId || this.ids
getComplainDeal(complainDealId).then(response => { getComplainDeal(complainDealId).then(response => {
this.form = response.data; this.form = response.data;
this.open = true; this.open = true;
this.title = "修改投诉处置"; this.title = "修改投诉处置";
var statusName = this.selectDictLabel(this.taskStateOptions, row.complainStatus);
this.form.complainStatus=statusName;
}); });
}, },
/** 删除按钮操作 */ /** 删除按钮操作 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment