35 lines
715 B
JavaScript
35 lines
715 B
JavaScript
|
|
import request from '@/utils/request';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @data 获取人员健康详情/detail-health-info
|
||
|
|
*/
|
||
|
|
export function healthDetailApi(data) {
|
||
|
|
return request({
|
||
|
|
url: '/smart-canteen//health/mobile/info/detail-health-info',
|
||
|
|
method: 'post',
|
||
|
|
data
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @data 编辑人员健康详情/edit-health-info
|
||
|
|
*/
|
||
|
|
export function editHealthInfoApi(data) {
|
||
|
|
return request({
|
||
|
|
url: '/smart-canteen//health/mobile/info/edit-health-info',
|
||
|
|
method: 'post',
|
||
|
|
data
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @data 获取慢性病字典
|
||
|
|
*/
|
||
|
|
export function dictHealthChronicApi(data) {
|
||
|
|
return request({
|
||
|
|
url: '/smart-canteen/health/mobile/chronic/dict-health-chronic',
|
||
|
|
method: 'post',
|
||
|
|
data
|
||
|
|
})
|
||
|
|
}
|