diff --git a/src/views/emergen_cyrescue/emergency_information/security_agency/transportation_management/components/detail.vue b/src/views/emergen_cyrescue/emergency_information/security_agency/transportation_management/components/detail.vue index 6eb2a4d..48f12e5 100644 --- a/src/views/emergen_cyrescue/emergency_information/security_agency/transportation_management/components/detail.vue +++ b/src/views/emergen_cyrescue/emergency_information/security_agency/transportation_management/components/detail.vue @@ -8,7 +8,7 @@ 返回基本信息 - + @@ -17,7 +17,7 @@ - + @@ -70,6 +70,7 @@ export default { SECURITY_LEVEL: '', DUTY_PHONE: '', ADMINISTRATIVE_REGION: '', + ADMINISTRATIVE_REGION_NAME: '', LONGITUDE: '', LATITUDE: '', EMERGENCY_TRANSPORT_MODE: '', @@ -110,7 +111,6 @@ export default { this.Id = this.$parent.CASE_ID this.getDetail(this.Id) } - this.getList() this.getTreeList() this.getDepartmentList() }, @@ -118,7 +118,6 @@ export default { goBack() { this.$parent.activeName = 'list' }, - //* *******************列表查询****************************** getTreeList() { const params = { PARENT_ID: '5a5d2809ed644aa6ba97a5240ff35484' @@ -139,11 +138,6 @@ export default { console.error('获取主管单位数据失败', e) }) }, - //* ****************************数据查看******************************* - handleDetail(id) { - this.dialogFormShow = true - this.getDetail(id) - }, getDetail(Id) { const params = { Id: Id } requestFN('/major/transportation/detail', params).then((response) => { @@ -157,6 +151,7 @@ export default { SECURITY_LEVEL: data.SECURITY_LEVEL, DUTY_PHONE: data.DUTY_PHONE, ADMINISTRATIVE_REGION: data.ADMINISTRATIVE_REGION, + ADMINISTRATIVE_REGION_NAME: data.ADMINISTRATIVE_REGION_NAME, LONGITUDE: data.LONGITUDE, LATITUDE: data.LATITUDE, EMERGENCY_TRANSPORT_MODE: data.EMERGENCY_TRANSPORT_MODE, @@ -182,10 +177,6 @@ export default { }).catch((e) => { console.error('获取详情数据失败', e) }) - }, - getQuery() { - this.$refs.multipleTable.clearSelection() - this.getList() } } } diff --git a/src/views/emergen_cyrescue/emergency_information/security_agency/transportation_management/components/list.vue b/src/views/emergen_cyrescue/emergency_information/security_agency/transportation_management/components/list.vue index c487381..df4b988 100644 --- a/src/views/emergen_cyrescue/emergency_information/security_agency/transportation_management/components/list.vue +++ b/src/views/emergen_cyrescue/emergency_information/security_agency/transportation_management/components/list.vue @@ -1,10 +1,18 @@