1
2
3
4
5
6
7
8
9
10
11
12
13
14
| const colorPredefine = ['#008cff', '#35b8e0', '#00cc88', '#ff9d00', '#ff4d4d', '#5b69bc', '#ff8acc', '#3b3e47', '#282828'];
|
| const alignOptions = [
| { id: 'left', fullName: '左对齐' },
| { id: 'center', fullName: '居中对齐' },
| { id: 'right', fullName: '右对齐' },
| ];
| const fixedOptions = [
| { id: 'none', fullName: '无' },
| { id: 'left', fullName: '左冻结' },
| { id: 'right', fullName: '右冻结' },
| ];
|
| export { alignOptions, colorPredefine, fixedOptions };
|
|