You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export const countType = {
|
|
'hx1': '核心区一',
|
|
'hx2': '核心区二',
|
|
'zq1': '执勤区一',
|
|
'zq2': '执勤区二'
|
|
}
|
|
|
|
export const rowClassName = (record:any, index: any) => {
|
|
return index % 2 === 0 ? 'even-row' : 'odd-row';
|
|
}; |