duy il y a 1 semaine
Parent
commit
f39742ec62
1 fichiers modifiés avec 37 ajouts et 0 suppressions
  1. 37 0
      src/api/modules/cross/cross.js

+ 37 - 0
src/api/modules/cross/cross.js

@@ -0,0 +1,37 @@
+import { HcApi } from '../../request/index'
+
+export default {
+
+    //获取分页
+    async queryListData(form) {
+        return HcApi({
+            url: '/api/blade-manager/profiler/page',
+            method: 'post',
+            params: form,
+        })
+    },
+    //查看详情
+    async getOne(form) {
+        return HcApi({
+            url: '/api/blade-manager/profiler/getOne',
+            method: 'get',
+            params: form,
+        })
+    },
+    //修改
+        async edit(form) {
+        return HcApi({
+            url: '/api/blade-manager/profiler/edit',
+            method: 'post',
+            data: form,
+        })
+    },
+    //查询测量人
+     async getListUserName(form) {
+        return HcApi({
+            url: '/api/blade-manager/profiler/getListUserName',
+            method: 'get',
+            params: form,
+        })
+    },
+}