diff --git a/src/views/indexSun.vue b/src/views/indexSun.vue
index 9c0004d..f745dbe 100644
--- a/src/views/indexSun.vue
+++ b/src/views/indexSun.vue
@@ -647,8 +647,8 @@
firstFormOne.value = [];
const params = {
centerId: centerId.value,
- // startDate: '2000-01-01',
- // endDate: '2030-12-31',
+ startDate: '2000-01-01',
+ endDate: '2030-12-31',
};
indexModalTitle.value = '今日应急';
modalApi.value = todayEmergencyListApi;
diff --git a/src/views/indexSun/centerMap.vue b/src/views/indexSun/centerMap.vue
index 1353443..95b24f7 100644
--- a/src/views/indexSun/centerMap.vue
+++ b/src/views/indexSun/centerMap.vue
@@ -757,11 +757,12 @@
}
:deep(.modal-box) {
- width: 330px;
+ width: 480px !important;
padding: 10px 20px;
display: flex;
flex-direction: column;
justify-content: space-around;
+ margin-bottom: 10px;
.top-left-a-right {
width: 48px;
@@ -773,9 +774,10 @@
.modal-item {
display: flex;
justify-content: space-between;
+ margin-bottom: 5px;
.item-one {
- width: 48%;
+ width: 180px;
}
.item-two {
@@ -787,6 +789,7 @@
.modal-btn {
display: flex;
justify-content: center;
+ margin-bottom: 5px;
.view-btn {
padding: 5px;
@@ -807,6 +810,20 @@
width: 330px;
height: 110px;
}
+ :deep(.modal-box-special) {
+ > div {
+ &:first-child {
+ margin-bottom: 5px;
+ }
+ &:not(:first-child) {
+ margin-bottom: 10px;
+ }
+
+ .item-two {
+ padding-right: 5px;
+ }
+ }
+ }
.hospital-list {
position: absolute;
bottom: 160px;
diff --git a/src/views/indexSun/indexSun.ts b/src/views/indexSun/indexSun.ts
index 0152549..af6aeca 100644
--- a/src/views/indexSun/indexSun.ts
+++ b/src/views/indexSun/indexSun.ts
@@ -144,9 +144,17 @@ export function infoContent(res: any) {
${res.orgName ? res.orgName : '--'}
- 关爱人数:
+ 管理员:
+ ${res.manageName ? res.manageName : '--'}
+
+
+ 管理员电话:
${res.loveNum ? res.loveNum : '--'}
+
+ 关爱人数:
+ ${res.managePhone ? res.managePhone : '--'}
+
电话:
${res.mobile ? res.mobile : '--'}
@@ -190,6 +198,18 @@ export function infoContent4(res: any) {
AED名称:
${res.name ? res.name : '--'}
+
+ 单位:
+ ${res.orgName ? res.orgName : '--'}
+
+
+ 管理员:
+ ${res.manageName ? res.manageName : '--'}
+
+
+ 管理员电话:
+ ${res.managePhone ? res.managePhone : '--'}
+
地点:
${res.address || '--'}
@@ -198,7 +218,7 @@ export function infoContent4(res: any) {
}
export function infoContentSpecial(res: any) {
return `
-
+
${res.type === '1' ? '油田医院' : res.type === '4' ? 'AED' : '健康小屋'}
@@ -875,8 +895,7 @@ export const oneRNewColumns = [
title: '应急方式',
dataIndex: 'emergencyType',
key: 'emergencyType',
- width: 90,
- customRender: ({ text }) => {
+ customRender: ({ text, record }) => {
switch (text) {
case '0':
return '120';
@@ -885,7 +904,7 @@ export const oneRNewColumns = [
case '2':
return '云坐席';
case '3':
- return '终端报警';
+ return `终端报警${record?.eventType_dictText ? `(${record?.eventType_dictText})` : ''}`;
default:
return '-';
}
diff --git a/src/views/indexSun/oneRightNew.vue b/src/views/indexSun/oneRightNew.vue
index 0c98e17..97d5395 100644
--- a/src/views/indexSun/oneRightNew.vue
+++ b/src/views/indexSun/oneRightNew.vue
@@ -19,21 +19,28 @@
性别/年龄:
-
{{ getSex(userData.sex) }}/{{ userData.age || '-' }}
+
{{ getSex(userData?.sex) }}/{{ userData?.age || '-' }}
应急方式:
-
{{ getTypeName(userData.emergencyType) }}
+
+ {{ getTypeName(userData?.emergencyType) }}
+ {{
+ userData?.eventType_dictText
+ ? `(${userData?.eventType_dictText}${userData?.abnormalValue ? `:${userData?.abnormalValue})` : ''}`
+ : ''
+ }}
+
单位:
-
{{ userData.departName }}
+
{{ userData?.departName }}
手机号码:
-
{{ userData.phone }}
+
{{ userData?.phone }}
@@ -62,9 +69,15 @@
急救人员
-
- {{ props.userData?.lifeguardName }}
- {{ props.userData?.lifeguardPhone }}
+
+
+
{{ props.userData?.lifeguardName }}
+
{{ props.userData?.lifeguardPhone }}
+
+
+
{{ props.userData?.lifeguardName2 }}
+
{{ props.userData?.lifeguardPhone2 }}
+
暂未配置急救人员
![]()