123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- import { ref } from 'vue';
- export const navList = ref([
- {
- title: '抽采泵站管控',
- pathName: 'gasPump',
- isHover: false,
- },
- {
- title: '抽采达标评判',
- pathName: 'gasStandard',
- isHover: false,
- },
- {
- title: '管网监控',
- pathName: 'gasPiping',
- isHover: false,
- },
- {
- title: '瓦斯监测预警',
- pathName: 'gasAlarm',
- isHover: false,
- },
- {
- title: '钻孔设计',
- pathName: 'drillDesign',
- isHover: false,
- },
- ]);
- export const sysInfo = [
- {
- title: '矿井名称',
- code: 'sysInfo.strinstallpos',
- },
- {
- title: '矿井产量',
- code: 'sysInfo.coalProduction',
- },
- {
- title: '矿井瓦斯等级',
- code: 'sysInfo.gasLevel',
- },
- {
- title: '煤炭储量',
- code: 'sysInfo.coalReserves',
- },
- {
- title: '主采煤层',
- code: 'sysInfo.mainCoalseam',
- },
- {
- title: '平均煤厚',
- code: 'sysInfo.coalThickness',
- },
- ];
- export const gasPump = [
- {
- title: '地面泵站数量',
- code: 'pump_over.num',
- },
- {
- title: '移动泵站数量',
- code: 'pump_under.num',
- },
- {
- title: '抽放泵型号',
- code: 'pump_under.runNum',
- },
- {
- title: '抽采管路',
- code: 'pump_under.runNum',
- },
- {
- title: '抽放泵运行数量',
- code: 'pump_under.runNum',
- },
- ];
- export const caikongqu = [
- {
- title: '回采工作面数量',
- code: 'caimei.num',
- },
- {
- title: '掘进工作面数量',
- code: 'juejin.num',
- },
- {
- title: '回采工作面位置(?)',
- code: 'caikongqu.num',
- },
- {
- title: '掘进工作面位置(?)',
- code: 'caikongqu.num',
- },
- {
- title: '采空区数量',
- code: 'caikongqu.num',
- },
- {
- title: '采空区位置(?)',
- code: 'caikongqu.num',
- },
- ];
|