index.js 578 B

12345678910111213
  1. import { errorCatcher, errorHandle, filter } from 'base-core-lib'
  2. import { appRx } from '../defalutConfig/indexRx'
  3. import {
  4. API_GET_WAREHOUSE_BASEINFO,
  5. API_GET_WAREHOUSE_LOOK,
  6. API_GET_WAREHOUSE_CUSTOMDROPDOWN
  7. } from '@/api/V2/warehouse'
  8. // 列表
  9. export const getList = appRx.get(API_GET_WAREHOUSE_BASEINFO, errorCatcher, errorHandle, filter)
  10. //仓库查看
  11. export const getLook = appRx.get( API_GET_WAREHOUSE_LOOK, errorCatcher, errorHandle, filter)
  12. //仓库下拉
  13. export const xiala = appRx.get( API_GET_WAREHOUSE_CUSTOMDROPDOWN, errorCatcher, errorHandle, filter)