创建项目检查设置页面

This commit is contained in:
叶锦涛
2025-11-24 14:35:54 +08:00
parent 122a15a73d
commit 27c3c850d6
24 changed files with 1457 additions and 1 deletions

View File

@@ -0,0 +1,71 @@
import request from '@/utils/request'
// 查询检查类型列表
export function listCheckType(query) {
return request({
url: '/system/check-type/list',
method: 'get',
params: query
})
}
// 查询检查类型详细
export function getCheckType(checkTypeId) {
return request({
url: '/system/check-type/' + checkTypeId,
method: 'get'
})
}
// 新增检查类型
export function addCheckType(data) {
return request({
url: '/system/check-type',
method: 'post',
data: data
})
}
// 修改检查类型
export function updateCheckType(data) {
return request({
url: '/system/check-type',
method: 'put',
data: data
})
}
// 删除检查类型
export function delCheckType(checkTypeId) {
return request({
url: '/system/check-type/' + checkTypeId,
method: 'delete'
})
}
// 查询检查方法列表
export function listCheckMethod(query) {
return request({
url: '/system/check-method/list',
method: 'get',
params: query
})
}
// 查询检查部位列表
export function listCheckPart(query) {
return request({
url: '/system/check-part/list',
method: 'get',
params: query
})
}
// 查询检查套餐列表
export function listCheckPackage(query) {
return request({
url: '/system/check-package/list',
method: 'get',
params: query
})
}