diff --git a/src/views/emergen_cyrescue/emergency_report/incident_report/components/list.vue b/src/views/emergen_cyrescue/emergency_report/incident_report/components/list.vue
index b103861..6c96e1e 100644
--- a/src/views/emergen_cyrescue/emergency_report/incident_report/components/list.vue
+++ b/src/views/emergen_cyrescue/emergency_report/incident_report/components/list.vue
@@ -34,6 +34,11 @@
+
+
+ {{ scope.row.RESCUE_SITUATION === '1' ? '已发起' : (scope.row.RESCUE_SITUATION === '2' || scope.row.RESCUE_SITUATION === null ? '未发起' : '') }}
+
+
是否救援
@@ -725,12 +730,14 @@ export default {
this.dialogRescueVisible = false
// 发送救援信息
this.sendSMS(this.rescueForm.FIRERESERVEPLAN_ID, this.rescueForm.HIERARCHICALRESPONSE_ID, this.rescueForm.REGISTRATION_ID)
+ .finally(() => {
+ this.getList()
+ })
}
})
},
sendSMS(planId, responseId, registrationId) {
- requestFN('/major/registration/sendSMS', { planId, responseId, registrationId }).then((response) => {
- })
+ return requestFN('/major/registration/sendSMS', { planId, responseId, registrationId })
},
handleRegionChange(value) {
const selectedRegion = this.regionData.find(region => region.DICTIONARIES_ID === value)
@@ -935,7 +942,7 @@ export default {
this.form.LONGITUDE = this.LONGITUDE
},
//* *******************列表查询******************************
- getList(queryParams) {
+ getList(queryParams = {}) {
this.listLoading = true
requestFN(
'/major/registration/list?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
diff --git a/src/views/emergen_cyrescue/emergency_report/notification_log/components/detail.vue b/src/views/emergen_cyrescue/emergency_report/notification_log/components/detail.vue
index bb9b5aa..659d6c2 100644
--- a/src/views/emergen_cyrescue/emergency_report/notification_log/components/detail.vue
+++ b/src/views/emergen_cyrescue/emergency_report/notification_log/components/detail.vue
@@ -214,7 +214,7 @@ export default {
},
getDetail(Id) {
const params = { Id }
- requestFN('/major/registration/detail', params).then((response) => {
+ requestFN('/major/registration/detailLog', params).then((response) => {
const data = response.msg
this.form = {
REPORT_UNIT: data.REPORT_UNIT,
diff --git a/src/views/emergen_cyrescue/emergency_report/notification_log/components/list.vue b/src/views/emergen_cyrescue/emergency_report/notification_log/components/list.vue
index 5dfe1a6..cad6823 100644
--- a/src/views/emergen_cyrescue/emergency_report/notification_log/components/list.vue
+++ b/src/views/emergen_cyrescue/emergency_report/notification_log/components/list.vue
@@ -22,7 +22,6 @@
- 数据导出
删除
@@ -41,7 +40,6 @@