riku
2024-10-17 11dd07b4eda7c7c0e48f0b8c50f4af160c7b9714
1. 新建日报和场景报告页面文件
已修改1个文件
已添加2个文件
62 ■■■■■ 文件已修改
src/router/index.js 53 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/fysp/data-product/ProdDailyReport.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/fysp/data-product/ProdSceneReport.vue 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.js
@@ -33,32 +33,39 @@
    //日报管理
    name: 'dailyreport',
    path: '/dailyreport',
    component: () => import('@/views/fysp/dailyreport/DailyReport.vue')
    component: () => import('@/views/fysp/data-product/ProdDailyReport.vue')
  },
  {
    //场景报告-工地
    name: 'construction',
    path: '/scenereport/construction',
    component: () => import('@/views/fysp/scenereport/ConstructionReport.vue')
    //场景报告
    name: 'scenereport',
    path: '/scenereport',
    component: () => import('@/views/fysp/data-product/ProdSceneReport.vue')
  },
  {
    //场景报告-码头
    name: 'wharf',
    path: '/scenereport/wharf',
    component: () => import('@/views/fysp/scenereport/WharfReport.vue')
  },
  {
    //场景报告-搅拌站
    name: 'mixing',
    path: '/scenereport/mixing',
    component: () => import('@/views/fysp/scenereport/MixingReport.vue')
  },
  {
    //场景报告-堆场
    name: 'storage',
    path: '/scenereport/storage',
    component: () => import('@/views/fysp/scenereport/StorageReport.vue')
  },
  // {
  //   //场景报告-工地
  //   name: 'construction',
  //   path: '/scenereport/construction',
  //   component: () => import('@/views/fysp/scenereport/ConstructionReport.vue')
  // },
  // {
  //   //场景报告-码头
  //   name: 'wharf',
  //   path: '/scenereport/wharf',
  //   component: () => import('@/views/fysp/scenereport/WharfReport.vue')
  // },
  // {
  //   //场景报告-搅拌站
  //   name: 'mixing',
  //   path: '/scenereport/mixing',
  //   component: () => import('@/views/fysp/scenereport/MixingReport.vue')
  // },
  // {
  //   //场景报告-堆场
  //   name: 'storage',
  //   path: '/scenereport/storage',
  //   component: () => import('@/views/fysp/scenereport/StorageReport.vue')
  // },
  {
    //监管任务
    name: 'taskmanage',
src/views/fysp/data-product/ProdDailyReport.vue
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,9 @@
<template>
  <div>DailyReport</div>
</template>
<script>
export default {
  name: 'DailyReport',
};
</script>
src/views/fysp/data-product/ProdSceneReport.vue