16 lines
607 B
JavaScript
16 lines
607 B
JavaScript
/**
|
|
* 抽象组件在业务层根据EntityDict的重新声明
|
|
* by Xc 20230807
|
|
*/
|
|
import AbsFilterPanel from 'oak-frontend-base/es/components/filterPanel';
|
|
import AbsList from 'oak-frontend-base/es/components/list';
|
|
import AbsListPro from 'oak-frontend-base/es/components/listPro';
|
|
import AbsDetail from 'oak-frontend-base/es/components/detail';
|
|
import AbsUpsert from 'oak-frontend-base/es/components/upsert';
|
|
const FilterPanel = AbsFilterPanel;
|
|
const List = AbsList;
|
|
const ListPro = AbsListPro;
|
|
const Detail = AbsDetail;
|
|
const Upsert = AbsUpsert;
|
|
export { FilterPanel, List, ListPro, Detail, Upsert, };
|