logwire-wms-ui-test
Version:
运匠科技wms-PDA基础组件库
46 lines (34 loc) • 701 B
JavaScript
/*
* 组件导出入口
* @author: 张文
* @date 2022-04-29
* */
// 公共页面
import {common} from "./common";
// 收货
import {receive} from "./receive";
// 出库
import {outbound} from "./outbound";
// 在库
import {inner} from "./inner";
// 库存
import {inventory} from "./inventory";
// 盘点
import count from './count'
// 收货
import inbound from './inbound'
// 加工
import {process} from './process'
// 容器管理
import {container} from "./container";
export const page = [
...common,
...receive,
...outbound,
...inner,
...count,
...inbound,
...inventory,
...process,
...container,
]