|
@@ -258,7 +258,7 @@
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="事件一类" prop="eventType">
|
|
|
- <el-select v-model="form.eventType" placeholder="请选择事件一类" @change="flValue" :disabled="findView">
|
|
|
+ <el-select v-model="form.eventType" placeholder="请选择事件一类" @change="detailflValue" :disabled="findView">
|
|
|
<el-option v-for="dict in eventTypeList" :key="dict.id" :label="dict.eventTypeName"
|
|
|
:value="dict.id"/>
|
|
|
</el-select>
|
|
@@ -701,6 +701,13 @@
|
|
|
this.hgjList = [];
|
|
|
});
|
|
|
},
|
|
|
+ detailflValue() {
|
|
|
+ listSJfl({parentId: this.form.eventType}).then(response => {
|
|
|
+ this.form.hgjDeptName = undefined;
|
|
|
+ this.eventTypeRlList = response.data;
|
|
|
+ this.hgjList = [];
|
|
|
+ });
|
|
|
+ },
|
|
|
hgjValue() {
|
|
|
listHgjXl({eventTypeValue: this.form.eventTypeXl}).then(response => {
|
|
|
this.form.hgjDeptName = undefined;
|
|
@@ -789,6 +796,8 @@
|
|
|
}
|
|
|
})
|
|
|
this.form.attachId = this.fileList;
|
|
|
+ this.detailflValue()
|
|
|
+ this.form.eventTypeXl=response.data.eventTypeXl;
|
|
|
this.openSee = true;
|
|
|
this.submit = false;
|
|
|
this.title = "事件详情";
|