Newer
Older
urbanLifeline_YanAn / src / utils / fixDict.js
@zhangqy zhangqy on 3 Oct 455 bytes first commit
  1. //固定字典
  2. export const fixDict = {
  3. // 根据因子的单位来匹配,扩展'#3ba272', '#fc8452', '#9a60b4', '#ea7ccc'
  4. propsColorYs: [
  5. { label: '(米)', color: '#5470c6', value: 'm' },
  6. { label: '(米/秒)', color: '#91cc75', value: 'm/s' },
  7. { label: '(度)', color: '#fac858', value: '°' },
  8. { label: '(立方米/小时)', color: '#ee6666', value: 'm³/h' },
  9. { label: '(立方米)', color: '#73c0de', value: 'm³' },
  10. ],
  11. };