1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
  <CompProdManage :menu="menu" />
</template>
<script setup>
import { ref } from 'vue';
import CompProdManage from '@/views/fysp/data-product/components/CompProdManage.vue';
 
const menu = ref([
  {
    name: '月度巡查情况汇总',
    path: 'inspectionSummary',
  },
  {
    name: '月度问题汇总',
    path: 'problemTypeSummary'
  },
  {
    name: '分街镇单场景问题数均值',
    path: 'problemCountSummary'
  },
  // {
  //   name: '监测设备汇总',
  //   path: 'monitorDeviceSummary'
  // },
  {
    name: '评估情况汇总',
    path: 'evaluationSummary'
  }
]);
</script>
<style scoped></style>