From 90427ad7b5e73aaee2eb376080547787d25dc2bb Mon Sep 17 00:00:00 2001 From: heyujie <516346543@qq.com> Date: 星期五, 29 七月 2022 18:41:22 +0800 Subject: [PATCH] suanfa app mange --- src/router.ts | 47 +++++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 43 insertions(+), 4 deletions(-) diff --git a/src/router.ts b/src/router.ts index 85755be..b5ecf65 100644 --- a/src/router.ts +++ b/src/router.ts @@ -16,6 +16,12 @@ import AddProduct from './views/operateManage/productManage/AddProduct.vue' import EquipmentList from './views/equipmentManage/equipmentList/index.vue' import EquipmentDetail from './views/equipmentManage/equipmentDetail/index.vue' +import AppManage from './views/AppManage/AppManage.vue' +import AppEdit from './views/AppManage/AppEdit.vue' +import BaseAlgorithm from "./views/AlgrithmManage/BaseAlgorithm.vue"; +import PageAlgorithm from "./views/AlgrithmManage/PageAlgorithm.vue"; +import PageAlgorithmEdit from './views/AlgrithmManage/PageAlgorithmEdit.vue'; +import BaseAlgorithmEdit from './views/AlgrithmManage/BaseAlgorithmEdit.vue'; import MobileLogin from "./views/MobileLogin.vue"; import BindPhone from "./views/BindPhone.vue"; @@ -77,7 +83,7 @@ name: "UserList", component: UserList }, - { + { path: "UserDetail", name: "UserDetail", component: UserDetail @@ -97,12 +103,12 @@ name: "ModelList", component: ModelList }, - { + { path: "AddModel", name: "AddModel", component: AddModel }, - { + { path: "ProductList", name: "ProductList", component: ProductList @@ -122,11 +128,44 @@ name: "EquipmentList", component: EquipmentList }, - { + { path: "EquipmentDetail", name: "EquipmentDetail", component: EquipmentDetail }, + { + path: "AppManage", + name: "AppManage", + component: AppManage + }, + { + path: "AppEdit/:appId", + name: "appEdit", + component: AppEdit, + props: true + }, + { + path: "PageAlgorithm", + name: "PageAlgorithm", + component: PageAlgorithm, + }, + { + path: "BaseAlgorithm", + name: "BaseAlgorithm", + component: BaseAlgorithm, + }, + { + path: "PageAlgorithmEdit/:action/:id", + name: "PageAlgorithmEdit", + component: PageAlgorithmEdit, + props: true + }, + { + path: "BaseAlgorithmEdit/:action/:id", + name: "BaseAlgorithmEdit", + component: BaseAlgorithmEdit, + props: true + }, ] } ] -- Gitblit v1.8.0