|
@@ -53,7 +53,8 @@ import {
|
|
|
API_POST_WAREHOUSE_INWEIGHT,
|
|
|
API_GET_WAREHOUSE_ALL,
|
|
|
API_SEND_BACK,
|
|
|
- API_DELETE_WAREHOUSE
|
|
|
+ API_DELETE_WAREHOUSE,
|
|
|
+ API_GET_WAREHOUSENAME
|
|
|
} from '@/api/V2/warehouse'
|
|
|
// import { app } from 'electron'
|
|
|
// 列表
|
|
@@ -161,4 +162,7 @@ export const getWarehouseAll = appRx.get(API_GET_WAREHOUSE_ALL, errorHandle, fi
|
|
|
export const sendback = appRx.post(API_SEND_BACK,errorCatcher, errorHandle, filter)
|
|
|
//删除
|
|
|
export const postdeletewarehouse = appRx.post(API_DELETE_WAREHOUSE,errorCatcher, errorHandle, filter)
|
|
|
+//查看自己负责的仓库
|
|
|
+export const getwarehousName = appRx.get(API_GET_WAREHOUSENAME,errorCatcher, errorHandle, filter)
|
|
|
+
|
|
|
|