import request from "@/utils/request"; /** * 量表详情 */ export function scaleInfo(parameter) { return request({ url: `${window.GLOBAL_CONFIG.API_APP}/app/healthy/scale/config/info`, method: "post", data: parameter }); } /** * 提交量表 */ export function resultWrite(parameter) { return request({ url: `${window.GLOBAL_CONFIG.API_APP}/app/healthy/scale/result/write`, method: "post", data: parameter }); }