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