- 新增产品数据列表组件 ProductDataList - 在基础数据模块中导出 ProductDataList 组件 - 为工人列表和辅料列表添加 requireQuantityAndPrice 字段 - 添加产品相关的国际化文案配置 - 创建产品数据页面并引入 ProductDataList 组件 - 在业务服务中增加产品相关接口定义 - 实现产品的增删改查、拖拽排序等完整功能 - 添加新增页面开发指南文档
10 lines
561 B
TypeScript
10 lines
561 B
TypeScript
export { default as MelonFarmerList } from './MelonFarmerList';
|
|
export { default as BoxProductList } from './BoxProductList'
|
|
export { default as BoxBrandList } from './BoxBrandList';
|
|
export { default as ExcipientList } from './ExcipientList';
|
|
export { default as WorkerList } from './WorkerList';
|
|
export { default as GiftBoxList } from './GiftBoxList';
|
|
export { default as ProductionAdvanceList } from './ProductionAdvanceList';
|
|
export { default as WorkerAdvanceList } from './WorkerAdvanceList';
|
|
export { default as ProductDataList } from './ProductDataList';
|