1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import { ref } from 'vue';
- export const navList = ref([
- {
- title: '智能监测管控',
- pathName: 'gasHome',
- isHover: false,
- },
- {
- title: '抽采泵站管控',
- pathName: 'gasPump',
- isHover: false,
- },
- {
- title: '抽采达标评判',
- pathName: 'gasStandard',
- 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',
- },
- ];
|