diff --git a/openhis-ui-vue3/src/api/maintainSystem/Inspection/inspectionType.js b/openhis-ui-vue3/src/api/maintainSystem/Inspection/inspectionType.js deleted file mode 100644 index 2085de90..00000000 --- a/openhis-ui-vue3/src/api/maintainSystem/Inspection/inspectionType.js +++ /dev/null @@ -1,87 +0,0 @@ -import request from '@/utils/request' - -// 查询检验类型列表 -export function listInspectionType(query) { - return request({ - url: '/system/inspection-type/list', - method: 'get', - params: query - }) -} - -// 查询检验类型详细 -export function getInspectionType(inspectionTypeId) { - return request({ - url: `/system/inspection-type/${inspectionTypeId}`, - method: 'get' - }) -} - -// 新增检验类型 -export function addInspectionType(data) { - return request({ - url: '/system/inspection-type', - method: 'post', - data: data - }) -} - -// 修改检验类型 -export function updateInspectionType(data) { - return request({ - url: '/system/inspection-type', - method: 'put', - data: data - }) -} - -// 删除检验类型 -export function delInspectionType(inspectionTypeId) { - return request({ - url: `/system/inspection-type/${inspectionTypeId}`, - method: 'delete' - }) -} - -// 查询检验套餐列表 -export function listInspectionPackage(query) { - return request({ - url: '/system/inspection-package/list', - method: 'get', - params: query - }) -} - -// 查询检验套餐详细 -export function getInspectionPackage(packageId) { - return request({ - url: `/system/inspection-package/${packageId}`, - method: 'get' - }) -} - -// 新增检验套餐 -export function addInspectionPackage(data) { - return request({ - url: '/system/inspection-package', - method: 'post', - data: data - }) -} - -// 修改检验套餐 -export function updateInspectionPackage(data) { - return request({ - url: '/system/inspection-package', - method: 'put', - data: data - }) -} - -// 删除检验套餐 -export function delInspectionPackage(packageId) { - return request({ - url: `/system/inspection-package/${packageId}`, - method: 'delete' - }) -} diff --git a/openhis-ui-vue3/src/views/maintainSystem/Inspection/index.vue b/openhis-ui-vue3/src/views/maintainSystem/Inspection/index.vue index c70ead42..de7f4fbd 100644 --- a/openhis-ui-vue3/src/views/maintainSystem/Inspection/index.vue +++ b/openhis-ui-vue3/src/views/maintainSystem/Inspection/index.vue @@ -517,7 +517,7 @@
lis分组 -