UNPKG

logwire-wms-ui-test

Version:

运匠科技wms-PDA基础组件库

29 lines (21 loc) 833 B
/* * 组件导出入口 * @author: 张文 * @date 2022-04-29 * */ // 配置 import {masterLocationConfigConfigIndex} from "./masterLocation/masterLocationConfig/index"; import {masterLocationConfigConfigAction} from "./masterLocation/masterLocationConfig/action"; import {masterLocationConfigQueryIndex} from "./masterLocation/masterLocationQuery/index"; import {masterLocationConfigQueryAction} from "./masterLocation/masterLocationQuery/action"; // 新品 import {newProjectIndex} from "./newProject/index"; import {newProjectAction} from "./newProject/action"; export const page = [ ...masterLocationConfigConfigIndex, ...masterLocationConfigConfigAction, ...masterLocationConfigQueryIndex, ...masterLocationConfigQueryAction, ...newProjectIndex, ...newProjectAction, ]