diff --git a/src/components/body-d-right/oneR.vue b/src/components/body-d-right/oneR.vue index 9db4d92..107193a 100644 --- a/src/components/body-d-right/oneR.vue +++ b/src/components/body-d-right/oneR.vue @@ -21,35 +21,58 @@ @@ -67,6 +90,7 @@ import { DataType } from '/@/utils/settings.ts'; import { useTheme } from '/@/hooks/theme/useTheme.ts'; import { message } from 'ant-design-vue'; + import { Row, Col } from 'ant-design-vue'; const props = defineProps({ setting: Object, @@ -208,7 +232,8 @@ } .police-con { - padding: 2% 0 2% 5%; + padding: 2% 5% 2% 5%; + display: grid; .con-item { padding: 1.3% 0; @@ -225,6 +250,9 @@ } } } + .ant-row { + margin-bottom: 10px; + } diff --git a/src/views/centralScreen/centralScreen.vue b/src/views/centralScreen/centralScreen.vue index ef0dcd5..a92eca6 100644 --- a/src/views/centralScreen/centralScreen.vue +++ b/src/views/centralScreen/centralScreen.vue @@ -7,7 +7,7 @@ {{ dayTimeO }}
- {{ title }}应急就医服务中心 + {{ title }} ({{ phone }})
累计运行时间:{{ dayTimeT }}
@@ -87,7 +87,7 @@ const dayTimeO = ref(); const dayTimeT = ref(); const interval = ref(1); - const title = ref(simpleName || '' + '应急就医服务中心'); + const title = ref((simpleName || '') + '应急就医服务中心'); const phone = ref(centerTel || '0951-6805199'); const screenPath = ref(''); @@ -424,13 +424,13 @@ background: url('/@/assets/images/bottom-b.png') no-repeat; background-size: 100% 100%; } - .central-screen-body-left { + .central-screen-body-left-s { width: calc(100% / 6) !important; } .body-d-middle { width: calc(100% * 2 / 3) !important; } - .body-d-right { + .body-d-right-s { width: calc(100% / 6) !important; } diff --git a/src/views/centralScreen/components/terminalAlarm.vue b/src/views/centralScreen/components/terminalAlarm.vue index 8fb3359..34a18b0 100644 --- a/src/views/centralScreen/components/terminalAlarm.vue +++ b/src/views/centralScreen/components/terminalAlarm.vue @@ -21,35 +21,58 @@ @@ -66,7 +89,7 @@ import { caching, useSession } from '/@/hooks/autoRefresh/caching.ts'; import { DataType } from '/@/utils/settings.ts'; import { useTheme } from '/@/hooks/theme/useTheme.ts'; - import { message } from 'ant-design-vue'; + import { Col, message, Row } from 'ant-design-vue'; import { useUserStore } from '/@/store/modules/user.ts'; const props = defineProps({ @@ -121,7 +144,13 @@ async function getScrollList() { try { let orgCodeList = userStore.getCenterInfo?.serviceScope; - const { code, result } = await getMonitorList({ pageSize: 10, pageNo: 1, orgCode: props.setting?.orgCode, orgCodeList }); + let codeList = ''; + if (orgCodeList) { + codeList = orgCodeList + ',' + props.setting?.orgCode; + } else { + codeList = props.setting?.orgCode; + } + const { code, result } = await getMonitorList({ pageSize: 10, pageNo: 1, orgCodeList: codeList }); if (code == 200) { setSession(RIGHT_KEY1_NEW, JSON.stringify(result.records)); scrollList.value = result.records; @@ -223,6 +252,9 @@ } } } + .ant-row { + margin-bottom: 10px; + } diff --git a/src/views/yinChuan/componetns/emergencyData/components/emergencyDataDialog.vue b/src/views/yinChuan/componetns/emergencyData/components/emergencyDataDialog.vue index 0e34be1..a27d88b 100644 --- a/src/views/yinChuan/componetns/emergencyData/components/emergencyDataDialog.vue +++ b/src/views/yinChuan/componetns/emergencyData/components/emergencyDataDialog.vue @@ -90,6 +90,18 @@ import { Dropdown } from 'ant-design-vue'; const columns = [ + { + title: '二级单位', + dataIndex: 'secondDepart', + key: 'secondDepart', + width: 120, + }, + { + title: '三级单位', + dataIndex: 'thirdDepart', + key: 'secondDepart', + width: 120, + }, { title: '姓名', dataIndex: 'patientName', @@ -100,38 +112,32 @@ title: '性别', dataIndex: 'gender_dictText', key: 'gender_dictText', - width: 80, + width: 45, }, { title: '年龄', dataIndex: 'age', key: 'age', - width: 80, - }, - { - title: '二级单位', - dataIndex: 'secondDepart', - key: 'secondDepart', - width: 120, + width: 45, }, { title: '联系电话', dataIndex: 'phone', key: 'phone', - width: 120, + width: 110, }, { title: '病人MPDS类型', dataIndex: 'mpdsCategoryId_dictText', key: 'mpdsCategoryId_dictText', - width: 120, + width: 110, }, { title: '生命体征', dataIndex: 'tz', key: 'tz', slot: 'tz', - width: 80, + width: 75, }, { title: '病情判断', @@ -143,11 +149,13 @@ title: '到达现场时间', dataIndex: 'arriveSceneTime', key: 'arriveSceneTime', + width: 180, }, { title: '发病地点', dataIndex: 'attackAddress', key: 'attackAddress', + width: 220, // customRender: ({ record }) => { // if (record?.address) { // return record?.address; @@ -160,9 +168,9 @@ const { visible, closeDialog, openDialog } = useDialog({ title: '急救列表' }); function openDia() { openDialog(); - nextTick(() => { - registerTable.value?.getRecords(); - }); + // nextTick(() => { + // registerTable.value?.getRecords(); + // }); } const registerTable = ref(); defineExpose({