gasHome.data.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import { ref } from 'vue';
  2. export const navList = ref([
  3. {
  4. title: '智能监测管控',
  5. pathName: 'gasHome',
  6. isHover: false,
  7. },
  8. {
  9. title: '抽采泵站管控',
  10. pathName: 'gasPump',
  11. isHover: false,
  12. },
  13. {
  14. title: '抽采达标评判',
  15. pathName: 'gasStandard',
  16. isHover: false,
  17. },
  18. ]);
  19. export const sysInfo = [
  20. {
  21. title: '矿井名称',
  22. code: 'sysInfo.strinstallpos',
  23. },
  24. {
  25. title: '矿井产量',
  26. code: 'sysInfo.coalProduction',
  27. },
  28. {
  29. title: '矿井瓦斯等级',
  30. code: 'sysInfo.gasLevel',
  31. },
  32. {
  33. title: '煤炭储量',
  34. code: 'sysInfo.coalReserves',
  35. },
  36. {
  37. title: '主采煤层',
  38. code: 'sysInfo.mainCoalseam',
  39. },
  40. {
  41. title: '平均煤厚',
  42. code: 'sysInfo.coalThickness',
  43. },
  44. ];
  45. export const gasPump = [
  46. {
  47. title: '地面泵站数量',
  48. code: 'pump_over.num',
  49. },
  50. {
  51. title: '移动泵站数量',
  52. code: 'pump_under.num',
  53. },
  54. {
  55. title: '抽放泵型号',
  56. code: 'pump_under.runNum',
  57. },
  58. {
  59. title: '抽采管路',
  60. code: 'pump_under.runNum',
  61. },
  62. {
  63. title: '抽放泵运行数量',
  64. code: 'pump_under.runNum',
  65. },
  66. ];
  67. export const caikongqu = [
  68. {
  69. title: '回采工作面数量',
  70. code: 'caimei.num',
  71. },
  72. {
  73. title: '掘进工作面数量',
  74. code: 'juejin.num',
  75. },
  76. {
  77. title: '回采工作面位置(?)',
  78. code: 'caikongqu.num',
  79. },
  80. {
  81. title: '掘进工作面位置(?)',
  82. code: 'caikongqu.num',
  83. },
  84. {
  85. title: '采空区数量',
  86. code: 'caikongqu.num',
  87. },
  88. {
  89. title: '采空区位置(?)',
  90. code: 'caikongqu.num',
  91. },
  92. ];