|
@@ -0,0 +1,16 @@
|
|
|
+import { errorCatcher, errorHandle, filter } from 'base-core-lib'
|
|
|
+import { appRx } from '../defalutConfig/indexRx'
|
|
|
+import {
|
|
|
+ API_GET_CAIWU_LIST,
|
|
|
+ API_POST_PAIFA_LIST,
|
|
|
+ API_GET_KUGUAN_LIST,
|
|
|
+ API_GET_CHAKAN_LOOK,
|
|
|
+} from '@/api/V2/financialManagement'
|
|
|
+//采购详情列表
|
|
|
+export const caiwuList = appRx.get(API_GET_CAIWU_LIST, errorCatcher, errorHandle, filter)
|
|
|
+// 派发
|
|
|
+export const paifa = appRx.post(API_POST_PAIFA_LIST, errorCatcher , errorHandle, filter)
|
|
|
+//查库管
|
|
|
+export const kuguan = appRx.get(API_GET_KUGUAN_LIST, errorCatcher, errorHandle,filter)
|
|
|
+//派车查看
|
|
|
+export const paiLook = appRx.get(API_GET_CHAKAN_LOOK, errorCatcher, errorHandle,filter)
|