Browse Source

1. 提交接口文件

hongrunxia 8 tháng trước cách đây
mục cha
commit
d95ab669b9
1 tập tin đã thay đổi với 10 bổ sung0 xóa
  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 });