Explorar el Código

按月封装修改

duy hace 1 mes
padre
commit
84ca02999b
Se han modificado 1 ficheros con 24 adiciones y 0 borrados
  1. 24 0
      src/api/modules/ledger/query.js

+ 24 - 0
src/api/modules/ledger/query.js

@@ -184,4 +184,28 @@ export default {
             data: form,
         })
     },
+    //按月封装
+    async byMonthPack(form) {
+        return HcApi({
+            url: '/api/blade-business/contractLog/byMonthPack',
+            method: 'post',
+            data: form,
+        })
+    },
+    //
+    //查询按月封装
+    async selectByMonthPack(form) {
+        return HcApi({
+            url: '/api/blade-business/contractLog/selectByMonthPack',
+            method: 'post',
+            data: form,
+        })
+    },
+    async deleteByMonthPack(form) {
+        return HcApi({
+            url: '/api/blade-business/contractLog/deleteByMonthPack',
+            method: 'get',
+            params: form,
+        })
+    },
 }