From 97a4ede43da5e5bc4d37a80d46e04572a291a596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BD=97=E6=96=8C=E6=9D=B0?= <> Date: Thu, 25 Jan 2024 17:05:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 6 + src/views/Home.vue | 7 +- .../customerReport/combinationDetails.vue | 573 +++++++++++++ .../customerReport/diseaseStatistics.vue | 28 +- .../customerReport/personnelPositive.vue | 49 +- .../customerReport/positiveResultsList.vue | 212 +---- src/views/workload/deskwork.vue | 782 ------------------ 7 files changed, 615 insertions(+), 1042 deletions(-) create mode 100644 src/views/customerReport/combinationDetails.vue diff --git a/src/router/index.js b/src/router/index.js index 85a9221..f8bfe7b 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -383,6 +383,12 @@ const routes = [{ component: () => import ("../views/customerReport/personnelPositive.vue") }, + { + path: "/combinationDetails", + name: "组合项目具体结果统计", + component: () => + import ("../views/customerReport/combinationDetails.vue") + }, //---------------------- 工作量登记 ---------------------- { path: "/registrar", diff --git a/src/views/Home.vue b/src/views/Home.vue index b625913..cfec6c2 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -382,7 +382,7 @@ style="color: rgb(114, 105, 105); font-weight: 700" > 客户报表 - + 人员阳性结果 + 组合项目具体结果统计 diff --git a/src/views/customerReport/combinationDetails.vue b/src/views/customerReport/combinationDetails.vue new file mode 100644 index 0000000..62b21de --- /dev/null +++ b/src/views/customerReport/combinationDetails.vue @@ -0,0 +1,573 @@ + + + diff --git a/src/views/customerReport/diseaseStatistics.vue b/src/views/customerReport/diseaseStatistics.vue index 8aa38aa..438f2b3 100644 --- a/src/views/customerReport/diseaseStatistics.vue +++ b/src/views/customerReport/diseaseStatistics.vue @@ -82,9 +82,11 @@ border width="45%" :height=" - flag - ? - window.pageHeight < 600 ? 415 : window.pageHeight - 185 - 10: '' + flag + ? window.pageHeight < 600 + ? 415 + : window.pageHeight - 185 - 10 + : '' " row-key="id" highlight-current-row @@ -162,7 +164,7 @@ export default { seriesData: [], yAxisData: [], pieData: [], - flag: true + flag: true, }; }, @@ -260,7 +262,7 @@ export default { }); }, handleExport() { - exportToExcel("#table", "登记员工作量统计", false); + exportToExcel("#table", "疾病人数统计", false); }, //查询 btnQuery() { @@ -310,20 +312,6 @@ export default { postapi("/api/customerreport/getdiseasecountstatisticsreport", body).then( (res) => { if (res.code != -1) { - res.data=[ - { - "diagnosisName": "身高", - "patientNames": "string", - "patientCount": 6, - "percentage": "60" - }, - { - "diagnosisName": "体重", - "patientNames": "string", - "patientCount": 4, - "percentage": "40" - } -] this.dataList = res.data; this.yAxisData = []; this.seriesData = []; @@ -331,7 +319,7 @@ export default { name: "", value: 0, }; - for (let i = 0; i < (res.data.length>10?10:res.data.length); i++) { + for (let i = 0; i < (res.data.length > 10 ? 10 : res.data.length);i++ ) { let pie = JSON.parse(JSON.stringify(pies)); this.yAxisData.push(res.data[i].diagnosisName); this.seriesData.push(res.data[i].patientCount); diff --git a/src/views/customerReport/personnelPositive.vue b/src/views/customerReport/personnelPositive.vue index c5d913c..fc830bd 100644 --- a/src/views/customerReport/personnelPositive.vue +++ b/src/views/customerReport/personnelPositive.vue @@ -16,9 +16,10 @@ 检查状态: - - - + + + +
@@ -48,14 +49,16 @@ 打印
-
+
- - - - + + + + + +
@@ -183,11 +186,11 @@ export default { }) } - // if (this.report.dataAsbitemOCX.length > 0) { - // this.report.dataAsbitemOCX.forEach(e => { - // diagnosisIds.push(e.id) - // }) - // } + // if (this.report.dataAsbitemOCX.length > 0) { + // this.report.dataAsbitemOCX.forEach(e => { + // diagnosisIds.push(e.id) + // }) + // } body.customerOrgs = customerOrgs // body.diagnosisIds = diagnosisIds @@ -201,22 +204,6 @@ export default { postapi('/api/customerreport/getpatientregisterpositivereport', body).then(res => { if (res.code != -1) { - res.data=[ - { - "patientNo": "string", - "patientName": "string", - "sexName": "string", - "age": 0, - "diagnosisNames": "尿素增高,胃炎,肝炎" - }, - { - "patientNo": "string", - "patientName": "string", - "sexName": "string", - "age": 0, - "diagnosisNames": "尿素增高,胃炎,肝炎,尿素增高,胃炎,肝炎" - } -] this.dataList = res.data; } }) @@ -248,7 +235,7 @@ export default { }); }, handleExport() { - exportToExcel("#table", "登记员工作量统计", false); + exportToExcel("#table", "人员阳性结果清单", false); } }, diff --git a/src/views/customerReport/positiveResultsList.vue b/src/views/customerReport/positiveResultsList.vue index 4c902d2..5a3fa7b 100644 --- a/src/views/customerReport/positiveResultsList.vue +++ b/src/views/customerReport/positiveResultsList.vue @@ -47,9 +47,10 @@ style="width: 80px" size="small" > - - - + + + +
@@ -443,210 +444,6 @@ export default { body ).then((res) => { if (res.code != -1) { - res.data = [ - { - diagnosisName: "身高", - patientRegisters: [ - { - departmentName: "神豚", - patientName: "张三", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "李四", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "王五", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "红豚", - patientName: "赵六", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "红豚", - patientName: "罗七", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "红豚", - patientName: "赵六", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "赵六", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - ], - }, - { - diagnosisName: "体重", - patientRegisters: [ - { - departmentName: "神豚", - patientName: "王五", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "王五", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "王五", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "王五", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "王五", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "王五", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - } - ], - }, - { - diagnosisName: "血小板增高", - patientRegisters: [ - { - departmentName: "神豚", - patientName: "张三", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "李四", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "李四", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - }, - { - departmentName: "神豚", - patientName: "李四", - sexName: "男", - age: 18, - patientRegisterNo: "20224896555", - patientNo: "520259320", - medicalTimes: 1, - telephone: "15522266", - mobileTelephone: "88825455", - } - ], - }, - ]; this.ForwardRanking(res.data) } }); @@ -730,7 +527,6 @@ page-break-before: avoid;}}`, // 去除页眉页脚 index += this.dataList[i].patientRegisters.length + 4; list.push(index); } - console.log(list) exportToExcel("#projectTableData", "阳性结果人员清单", true,list); } else if (this.format == 1) { exportToExcel("#standardTableData", "阳性结果人员清单",false); diff --git a/src/views/workload/deskwork.vue b/src/views/workload/deskwork.vue index 64249b1..c1acbd0 100644 --- a/src/views/workload/deskwork.vue +++ b/src/views/workload/deskwork.vue @@ -531,646 +531,6 @@ page-break-before: avoid;}}`, // 去除页眉页脚 } ).then((res) => { if (res.code != -1) { - res.data = [ - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "湖南向日葵", - itemTypeName: "心电图", - asbitemName: "心电图", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "神4", - itemTypeName: "脂肪代谢", - asbitemName: "脂肪代谢", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorName: "王五", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "湖南向日葵", - itemTypeName: "心电图", - asbitemName: "心电图", - doctorName: "张三", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "神4", - itemTypeName: "脂肪代谢", - asbitemName: "脂肪代谢", - doctorName: "李四", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - } - ]; let newTableData = []; let objs = { customerName: "", @@ -1206,148 +566,6 @@ page-break-before: avoid;}}`, // 去除页眉页脚 } ).then((res) => { if (res.code != -1) { - res.data = [ - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "一般检查", - asbitemName: "三围", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "内科", - asbitemName: "血压", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "血常规三分类", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "乙肝两对半", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "个人体检", - itemTypeName: "检验科", - asbitemName: "肝功能检查", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "湖南向日葵", - itemTypeName: "一般检查", - asbitemName: "身高体重", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "湖南向日葵", - itemTypeName: "心电图", - asbitemName: "心电图", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "湖南向日葵", - itemTypeName: "心电图", - asbitemName: "心电图", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "湖南向日葵", - itemTypeName: "心电图", - asbitemName: "心电图", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "神4", - itemTypeName: "脂肪代谢", - asbitemName: "脂肪代谢", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - { - customerName: "神4", - itemTypeName: "脂肪代谢", - asbitemName: "脂肪代谢", - doctorCheckCount: 1, - avgStandardPrice: 1, - avgChargePrice: 2, - sumStandardPrice: 3, - sumChargePrice: 4, - }, - ]; let newTableData = []; let objs = { customerName: "",