|
@@ -30,7 +30,7 @@
|
|
*
|
|
*
|
|
* 菜单配置相关信息:使用vent/home/billboard/gas及类似组件进行配置(即 ./gas.vue ./fire.vue 等)
|
|
* 菜单配置相关信息:使用vent/home/billboard/gas及类似组件进行配置(即 ./gas.vue ./fire.vue 等)
|
|
*
|
|
*
|
|
- * 支持的看板类型如下:'DustStatus'、'FireStatus'、'FileOverview'、'VentilationStatus'、'GasStatus'
|
|
|
|
|
|
+ * 支持的看板类型如下:'DustStatus'、'FireStatus'、'FileOverview'、'VentilationStatus'、'GasStatus'、'Summary'
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
import { computed, onMounted, ref } from 'vue';
|
|
import { computed, onMounted, ref } from 'vue';
|
|
@@ -45,6 +45,7 @@
|
|
import FireStatus from './components/FireStatus.vue';
|
|
import FireStatus from './components/FireStatus.vue';
|
|
import VentilationStatus from './components/VentilationStatus.vue';
|
|
import VentilationStatus from './components/VentilationStatus.vue';
|
|
import GasStatus from './components/GasStatus.vue';
|
|
import GasStatus from './components/GasStatus.vue';
|
|
|
|
+ import Summary from './components/Summary.vue';
|
|
// import mapComponent from './components/3Dmap/index.vue';
|
|
// import mapComponent from './components/3Dmap/index.vue';
|
|
|
|
|
|
const props = defineProps<{
|
|
const props = defineProps<{
|
|
@@ -61,6 +62,7 @@
|
|
VentilationStatus,
|
|
VentilationStatus,
|
|
GasStatus,
|
|
GasStatus,
|
|
FireStatus,
|
|
FireStatus,
|
|
|
|
+ Summary,
|
|
};
|
|
};
|
|
// 组件Map,不同type需要跳转到不同的矿端页面
|
|
// 组件Map,不同type需要跳转到不同的矿端页面
|
|
const routePathMap = {
|
|
const routePathMap = {
|
|
@@ -69,6 +71,7 @@
|
|
VentilationStatus: '/micro-vent-3dModal/dashboard/analysis',
|
|
VentilationStatus: '/micro-vent-3dModal/dashboard/analysis',
|
|
GasStatus: '/gas/warn/home',
|
|
GasStatus: '/gas/warn/home',
|
|
FireStatus: '/fire/warn/home',
|
|
FireStatus: '/fire/warn/home',
|
|
|
|
+ Summary: undefined,
|
|
};
|
|
};
|
|
|
|
|
|
const mainTitle = '国家能源神东煤炭集团';
|
|
const mainTitle = '国家能源神东煤炭集团';
|