hldy_yunwei_vue/src/views/iot/ConfigLog/configlog.api.ts

13 lines
212 B
TypeScript

import { defHttp } from '/@/utils/http/axios';
enum Api {
list = '/iot/syncConfigLog/list',
}
/**
* 列表接口
* @param params
*/
export const list = (params) => defHttp.get({ url: Api.list, params });