Ver Fonte

新增合同api

tanxue há 2 meses atrás
pai
commit
97f3862b33
1 ficheiros alterados com 35 adições e 0 exclusões
  1. 35 0
      api/hetong.js

+ 35 - 0
api/hetong.js

@@ -0,0 +1,35 @@
+import request from '@/utils/request'
+export function getHetongLast(data = {}) {
+  return request({
+    url: '/app/guanliyuan/hetong/last/info',
+    headers: {
+      isToken: true
+    },
+    method: 'post',
+    data,
+    timeout: 20000
+  })
+}
+export function getHetongList(data = {}) {
+  return request({
+    url: '/app/guanliyuan/hetong/list',
+    headers: {
+      isToken: true
+    },
+    method: 'post',
+    data,
+    timeout: 20000
+  })
+}
+export function getHetongQianming(data = {}) {
+  return request({
+    url: '/app/guanliyuan/hetong/qianming',
+    headers: {
+      isToken: true
+    },
+    method: 'post',
+    data,
+    timeout: 20000
+  })
+}
+