干燥机配套车间生产管理系统/云平台服务端
baoshiwei
2024-05-27 fa3ac93010bea3805438ee3ab0a182bfbf7423da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import componentSetting from '/@/settings/componentSetting';
 
const { table } = componentSetting;
 
const { pageSizeOptions, defaultPageSize, defaultSize, fetchSetting, defaultSortFn, defaultFilterFn } = table;
 
export const ROW_KEY = 'key';
 
// Optional display number per page;
export const PAGE_SIZE_OPTIONS = pageSizeOptions;
 
// Number of items displayed per page
export const PAGE_SIZE = defaultPageSize;
 
// Common interface field settings
export const FETCH_SETTING = fetchSetting;
 
// Configure general sort function
export const DEFAULT_SORT_FN = defaultSortFn;
 
export const DEFAULT_FILTER_FN = defaultFilterFn;
 
//  Default layout of table cells
export const DEFAULT_ALIGN = 'center';
// Default Size
export const DEFAULT_SIZE = defaultSize;
 
export const INDEX_COLUMN_FLAG = 'INDEX';
 
export const ACTION_COLUMN_FLAG = 'ACTION';