src/api/indicatorInfo/index.ts
@@ -1,6 +1,7 @@ import request from '@/utils/request'; import { AxiosPromise } from 'axios'; import { IndicatorInfoVO, IndicatorInfoForm, IndicatorInfoQuery } from '@/api/indicatorInfo/types'; import { IndicatorStatus } from '@/api/indicatorInfo/status'; /** * 查询指标取值列表 @@ -17,6 +18,18 @@ }; /** * 查询指标取值状态 * @returns {*} */ export const getIndicatorInfoStatus = (): AxiosPromise<IndicatorStatus[]> => { return request({ url: '/demo/indicatorInfo/status', method: 'get', }); }; /** * 查询指标取值详细 * @param id */