chenyc
2024-08-15 5d14849c54bf53624c8aa1497c2372fdf15ab8e7
src/api/user/index.ts
@@ -24,4 +24,31 @@
        method: 'post',
        data: params,
    })
}
export function listWeightHistory(params: Object) {
    return request({
        url: `${confingInfoStore().confingInfo.base_api}/patient/hemo/med/body/state/pre/listWeightHistory`,
        method: 'post',
        data: params,
    })
}
export function listBPHistory(params: Object) {
    return request({
        url: `${confingInfoStore().confingInfo.base_api}/patient/hemo/med/body/state/pre/listBPHistory`,
        method: 'post',
        data: params,
    })
}
export function checkUploadFile(params: Object) {
    return request({
        url: `http://127.0.0.1:5000/check-face`,
        method: 'post',
        data: params,
    })
}
export function test() {
    return request({
        url: `http://127.0.0.1:5000/test`,
        method: 'post',
    })
}