소스 검색

断面接口

duy 1 주 전
부모
커밋
f39742ec62
1개의 변경된 파일37개의 추가작업 그리고 0개의 파일을 삭제
  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,
+        })
+    },
+}