|
@@ -40,10 +40,10 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="所属街道" prop="streetOfOwnership">
|
|
|
- <el-input v-model="_streetOfOwnership_str" disabled placeholder="请选择关联项目,自动填入"></el-input>
|
|
|
+ <el-input v-model="streetOfOwnership_str" disabled placeholder="请选择关联项目,自动填入"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="任务类型" prop="taskType">
|
|
|
- <el-input v-model="_taskType_str" disabled placeholder="请选择关联项目,自动填入"></el-input>
|
|
|
+ <el-input v-model="taskType_str" disabled placeholder="请选择关联项目,自动填入"></el-input>
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="任务描述" prop="taskDescription">
|
|
@@ -129,8 +129,8 @@ export default {
|
|
|
associatedItems: [],
|
|
|
associatedItemsOptions: []
|
|
|
},
|
|
|
- _streetOfOwnership_str: "",
|
|
|
- _taskType_str: "",
|
|
|
+ streetOfOwnership_str: "",
|
|
|
+ taskType_str: "",
|
|
|
// 关联下拉框
|
|
|
pageSize: 10,
|
|
|
page: 1
|
|
@@ -167,13 +167,13 @@ export default {
|
|
|
// 所属街道遍历渲染
|
|
|
this.selectSelectDataMap.projectType.forEach(item=>{
|
|
|
if(item.index == this.createTaskForm.taskType){
|
|
|
- this._taskType_str = item.name;
|
|
|
+ this.taskType_str = item.name;
|
|
|
}
|
|
|
})
|
|
|
// 任务类型遍历渲染
|
|
|
this.selectSelectDataMap.associatedItems.forEach(item=>{
|
|
|
if(item.index == this.createTaskForm.streetOfOwnership){
|
|
|
- this._streetOfOwnership_str = item.name;
|
|
|
+ this.streetOfOwnership_str = item.name;
|
|
|
}
|
|
|
})
|
|
|
},
|