初始化

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,26 @@
import request from '/@/utils/request';
export function Add(params: string) {
return request({
url: '/patient/vascular/access/img/add',
method: 'post',
data: params,
});
}
export function update(params: object) {
return request({
url: '/patient/vascular/access/img/update',
method: 'post',
data: params,
});
}
export function getByPatient(params: object) {
return request({
url: '/patient/vascular/access/img/getByPatient',
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
params
})
}