13 lines
212 B
TypeScript
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 });
|