riku
2025-09-20 0796eebe3520fafb0ac5d36ee584af81506d7e9c
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
<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: 'scene',
  },
  {
    name: '评估清单',
    path: 'evaluate'
  },
  {
    name: '整改清单',
    path: 'inspection'
  },
  {
    name: '监测数据',
    path: 'monitorData'
  }
]);
</script>
<style scoped></style>