|
@@ -46,7 +46,8 @@ import {
|
|
API_POST_INVOICING,
|
|
API_POST_INVOICING,
|
|
API_POST_EXPORT,
|
|
API_POST_EXPORT,
|
|
API_GET_SHIPPINGINFOFORMATION,
|
|
API_GET_SHIPPINGINFOFORMATION,
|
|
- API_POST_INSPECTIONCHECK
|
|
|
|
|
|
+ API_POST_INSPECTIONCHECK,
|
|
|
|
+ API_GAT_QRCODE
|
|
} from '@/api/V2/houseSelfCollect'
|
|
} from '@/api/V2/houseSelfCollect'
|
|
//客户管理列表
|
|
//客户管理列表
|
|
export const getCustomerManage = appRx.get(API_GET_CUSTOMER_MANAGE, errorCatcher, errorHandle, filter)
|
|
export const getCustomerManage = appRx.get(API_GET_CUSTOMER_MANAGE, errorCatcher, errorHandle, filter)
|
|
@@ -139,4 +140,6 @@ export const export1 = appRx.post(API_POST_EXPORT)
|
|
// 车牌号
|
|
// 车牌号
|
|
export const getshippinginfo = appRx.get(API_GET_SHIPPINGINFOFORMATION, errorCatcher, errorHandle, filter)
|
|
export const getshippinginfo = appRx.get(API_GET_SHIPPINGINFOFORMATION, errorCatcher, errorHandle, filter)
|
|
// 确认初检信息
|
|
// 确认初检信息
|
|
-export const postCheck = appRx.post(API_POST_INSPECTIONCHECK, errorCatcher, errorHandle, filter)
|
|
|
|
|
|
+export const postCheck = appRx.post(API_POST_INSPECTIONCHECK, errorCatcher, errorHandle, filter)
|
|
|
|
+// 单据二维码
|
|
|
|
+export const getQRcode = appRx.get(API_GAT_QRCODE, errorCatcher, errorHandle, filter)
|