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