From 1bfd8d8104a5594d43e05b50f7c8ff6ee08dd88f Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Fri, 1 Nov 2024 13:24:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=B1=E5=8C=BB=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E8=B4=B9=E7=94=A8=E6=98=8E=E7=BB=86=EF=BC=8C=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E6=8F=90=E4=BA=A4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/health/doctorRecordCost.js | 44 ++ src/views/health/doctorRecord/index.vue | 430 ++++++++++++++++++- src/views/health/marRecord/index.vue | 28 +- src/views/health/temperatureRecord/index.vue | 12 + 4 files changed, 504 insertions(+), 10 deletions(-) create mode 100644 src/api/health/doctorRecordCost.js diff --git a/src/api/health/doctorRecordCost.js b/src/api/health/doctorRecordCost.js new file mode 100644 index 0000000..eea98b0 --- /dev/null +++ b/src/api/health/doctorRecordCost.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询就医记录费用明细列表 +export function listDoctorRecordCost(query) { + return request({ + url: '/health/doctorRecordCost/list', + method: 'get', + params: query + }) +} + +// 查询就医记录费用明细详细 +export function getDoctorRecordCost(id) { + return request({ + url: '/health/doctorRecordCost/' + id, + method: 'get' + }) +} + +// 新增就医记录费用明细 +export function addDoctorRecordCost(data) { + return request({ + url: '/health/doctorRecordCost', + method: 'post', + data + }) +} + +// 修改就医记录费用明细 +export function updateDoctorRecordCost(data) { + return request({ + url: '/health/doctorRecordCost', + method: 'put', + data + }) +} + +// 删除就医记录费用明细 +export function delDoctorRecordCost(id) { + return request({ + url: '/health/doctorRecordCost/' + id, + method: 'delete' + }) +} diff --git a/src/views/health/doctorRecord/index.vue b/src/views/health/doctorRecord/index.vue index 0f48a6d..3ec1f85 100644 --- a/src/views/health/doctorRecord/index.vue +++ b/src/views/health/doctorRecord/index.vue @@ -11,6 +11,11 @@ + + + + + @@ -41,6 +46,11 @@ + + + @@ -76,6 +86,11 @@ + + + + + @@ -97,9 +112,9 @@ - + @@ -111,18 +126,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
基本信息
+
+ 新增 + 删除明细 + 总费用汇总 +
+
+
+ + + + + + + + + + + + + + + + + + +
+
+
+ +