import { http } from "@/utils/http"; // 指标列表 type templateInfo = { code: number; msg: string; data: boolean; }; // type templateInfoList = { // code: number; // msg: string; // data: Array; // }; // type templateInfoData = { // code: number; // msg: string; // data: addTemplate; // }; // type addTemplate = { // tpName: string; // id: string; // }; // 公式验证 export const conditionVerify = data => { return http.request("post", "/assessment/conditionVerify", { data }); };