liuyu
5 小时以前 82a74ba0402ab546ba524d23ce62198c4d00d2f7
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 };