修改测试问题

This commit is contained in:
fks-xuxinyue
2024-08-27 17:32:31 +08:00
parent 30a76a5cc3
commit 440b43ba42
14 changed files with 331 additions and 2498 deletions

View File

@@ -60,3 +60,13 @@ export const getEnum = async ({
const res = await http.get(api, params);
return Promise.resolve(res);
};
/**
* 获取谈规划单位(需传参,参数 enumType)
*/
export const getEnumEnergy = async ({
api = `${BASE_URL}/operation/enum/getEnumEnergy`,
params = {},
}: dictHttpConfig) => {
const res = await http.get(api, params);
return Promise.resolve(res);
};