初始化

This commit is contained in:
chenyc
2025-12-13 18:52:08 +08:00
commit 9041a4298f
553 changed files with 59783 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
import request from '/@/utils/request';
import { AxiosPromise } from 'axios';
import type { ICommonListParams } from '../common.type';
import type { IMedAfterList } from './types/patient_hemo_med_body_state_after.type';
export function Add(params: string) {
return request({
url: '/patient/hemo/med/body/state/after/add',
method: 'post',
data: params,
});
}
export function update(params: string) {
return request({
url: '/patient/hemo/med/body/state/after/update',
method: 'post',
data: params,
});
}
export function deleteId(params: string) {
return request({
url: '/patient/hemo/med/body/state/after/delete',
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: params,
});
}
/**
* 获取透后评估
* @param params
* @returns
*/
export function list(params: ICommonListParams) :AxiosPromise<IMedAfterList> {
return request({
url: '/patient/hemo/med/body/state/after/list',
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
params
})
}
/**
* 保存透后评估
* @param data
* @returns
*/
export function medAfterSaveApi(data) {
return request({
url: '/patient/hemo/med/body/state/after/save',
method: 'post',
// headers: {
// 'Content-Type': 'application/x-www-form-urlencoded'
// },
data
})
}