12345678910111213 |
- import { errorCatcher, errorHandle, filter } from 'base-core-lib'
- import { appRx } from '../defalutConfig/indexRx'
- import {
- API_GET_WAREHOUSE_BASEINFO,
- API_GET_WAREHOUSE_LOOK,
- API_GET_WAREHOUSE_CUSTOMDROPDOWN
- } from '@/api/V2/warehouse'
- // 列表
- export const getList = appRx.get(API_GET_WAREHOUSE_BASEINFO, errorCatcher, errorHandle, filter)
- //仓库查看
- export const getLook = appRx.get( API_GET_WAREHOUSE_LOOK, errorCatcher, errorHandle, filter)
- //仓库下拉
- export const xiala = appRx.get( API_GET_WAREHOUSE_CUSTOMDROPDOWN, errorCatcher, errorHandle, filter)
|