hejianhao
2025-04-01 2cd68f2a4545b2b024688e6ccf454cd770e412d0
Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory
1个文件已修改
1个文件已添加
53 ■■■■ 已修改文件
src/router/index.js 36 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/approvalPlan/list.vue 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.js
@@ -56,22 +56,32 @@
                    }
                ]
            },
        ],
    },{
        path: "",
        redirect: "dispatching",
        component: Layouts,
        children: [
            {
                path: "/dispatching",
                path: "/dataManagement",
                component: Parent,
                meta: {
                    title: "实验调度管理",
                    oneself: true,
                    hide: true,
                    privilege: 'dispatching'
                    title: "实验室数据管理",
                },
                component: () => import("../views/dispatching/list.vue"),
            },
                children: [
                    {
                        path: "/approvalPlan",
                        meta: {
                            title: "项目课题方案审批",
                            keepAlive: true,
                        },
                        component: () => import("../views/approvalPlan/list.vue"),
                    },
                    {
                        path: "/dispatching",
                        meta: {
                            title: "实验调度管理",
                            keepAlive: true,
                        },
                        component: () => import("../views/dispatching/list.vue"),
                    },
                ],
            }
        ],
    },
];
src/views/approvalPlan/list.vue
New file
@@ -0,0 +1,17 @@
<template>
    <div>这是列表11111111111111</div>
  </template>
  <script>
  export default {
    name: 'dispatchList',
    data() {
      return {
      }
    },
    created() {
    }
  }
  </script>
  <style scoped></style>