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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
基本信息
+
+ 新增 + 删除明细 + 总费用汇总 +
+
+
+ + + + + + + + + + + + + + + + + + +
+
+
+ +