xinelu-applet-ui/api/pagesC/healthdata/index.js

13 lines
224 B
JavaScript
Raw Normal View History

2023-10-19 15:49:55 +08:00
import request from "@/api/request.js"
//获取体征记录
export function record(data) {
return request({
url: `/fd/ps/record`,
data,
method: 'get',
header: {
// region: uni.getStorageSync('region'),
}
})
}