hongrunxia 8 месяцев назад
Родитель
Сommit
d95ab669b9
1 измененных файлов с 10 добавлено и 0 удалено
  1. 10 0
      src/views/vent/monitorManager/warningMonitor/warning.api.ts

+ 10 - 0
src/views/vent/monitorManager/warningMonitor/warning.api.ts

@@ -0,0 +1,10 @@
+import { defHttp } from '/@/utils/http/axios';
+
+enum Api {
+  list = '/safety/ventanalyAlarmLog/list',
+}
+/**
+ * 列表接口
+ * @param params
+ */
+export const list = (params) => defHttp.get({ url: Api.list, params });