gasHome.data.ts 1.7 KB

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