carSeries1.js 354 B

1234567891011121314151617181920
  1. const TABLEHEADS = ['车系', '操作'];
  2. const TABLEHEADSTYLES = {
  3. background: '#8D9092',
  4. height: '36px',
  5. color: '#fff',
  6. };
  7. const TRSSTYLE = {
  8. width: '50%',
  9. height: '36px',
  10. };
  11. const OPERATIONSSTYLE = {
  12. color: '#00f'
  13. }
  14. module.exports = {
  15. TABLEHEADS,
  16. TABLEHEADSTYLES,
  17. TRSSTYLE,
  18. OPERATIONSSTYLE
  19. }