|
@@ -3,10 +3,10 @@
|
|
<template #header>
|
|
<template #header>
|
|
<div style="text-align: center">
|
|
<div style="text-align: center">
|
|
统计日期:
|
|
统计日期:
|
|
- <!-- <span v-if="reportFirst.kssj" style="color: #fc6c34;">
|
|
|
|
- {{ reportFirst.kssj }} 至 {{ reportFirst.jssj }}
|
|
|
|
- </span> -->
|
|
|
|
- <span style="color: #fc6c34;">当前</span>
|
|
|
|
|
|
+ <span v-if="kssj1" style="color: #fc6c34;">
|
|
|
|
+ {{ kssj1 }} 至 {{ jssj1 }}
|
|
|
|
+ </span>
|
|
|
|
+ <span v-else style="color: #fc6c34;">当前</span>
|
|
统计机构名称:<span style="color: #fc6c34;">长沙泰和医院</span>
|
|
统计机构名称:<span style="color: #fc6c34;">长沙泰和医院</span>
|
|
指标名称: <span style="color: #fc6c34;">{{ reportInfo1.reportName }}</span>
|
|
指标名称: <span style="color: #fc6c34;">{{ reportInfo1.reportName }}</span>
|
|
统计结果描述: <span style="color: #fc6c34;">{{ reportInfo1.overview }}{{ reportInfo1.unit }}</span>
|
|
统计结果描述: <span style="color: #fc6c34;">{{ reportInfo1.overview }}{{ reportInfo1.unit }}</span>
|
|
@@ -28,7 +28,8 @@
|
|
fullscreen destroy-on-close>
|
|
fullscreen destroy-on-close>
|
|
<ReportSecondPage :reportSecond="reportSecond" />
|
|
<ReportSecondPage :reportSecond="reportSecond" />
|
|
</el-dialog>
|
|
</el-dialog>
|
|
- <el-dialog v-else :title="titleChart" v-model="patientDrawer" width="80%" height="80%" top="40px" draggable destroy-on-close>
|
|
|
|
|
|
+ <el-dialog v-else :title="titleChart" v-model="patientDrawer" width="80%" height="80%" top="40px" draggable
|
|
|
|
+ destroy-on-close>
|
|
<ReportPatientPage :reportPatient="reportPatient" />
|
|
<ReportPatientPage :reportPatient="reportPatient" />
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</template>
|
|
</template>
|
|
@@ -65,11 +66,15 @@ const param1 = ref({})
|
|
|
|
|
|
const x1Name = ref('')
|
|
const x1Name = ref('')
|
|
const y1Name = ref('')
|
|
const y1Name = ref('')
|
|
|
|
+const kssj1 = ref('')
|
|
|
|
+const jssj1 = ref('')
|
|
|
|
|
|
reportData.value = props.reportFirst.data
|
|
reportData.value = props.reportFirst.data
|
|
reportInfo1.value = props.reportFirst.row
|
|
reportInfo1.value = props.reportFirst.row
|
|
tableData.value = props.reportFirst.tableInfo
|
|
tableData.value = props.reportFirst.tableInfo
|
|
param1.value = props.reportFirst.params
|
|
param1.value = props.reportFirst.params
|
|
|
|
+kssj1.value = props.reportFirst.kssj
|
|
|
|
+jssj1.value = props.reportFirst.jssj
|
|
|
|
|
|
const showFirstPst = () => {
|
|
const showFirstPst = () => {
|
|
let barTitle = reportInfo1.value.reportName
|
|
let barTitle = reportInfo1.value.reportName
|
|
@@ -119,6 +124,8 @@ const reportSecondInfo = (row) => {
|
|
titleChart.value = res.title
|
|
titleChart.value = res.title
|
|
sndDrawer.value = true
|
|
sndDrawer.value = true
|
|
reportSecond.value.row = reportInfo1.value
|
|
reportSecond.value.row = reportInfo1.value
|
|
|
|
+ reportSecond.value.kssj = kssj1.value
|
|
|
|
+ reportSecond.value.jssj = jssj1.value
|
|
reportSecond.value.params = clone(params)
|
|
reportSecond.value.params = clone(params)
|
|
})
|
|
})
|
|
}
|
|
}
|