From 2366cd3edcbeddc7b02f79515c902387778efe3b Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期四, 09 十一月 2023 15:56:04 +0800 Subject: [PATCH] 增加修改销售明细状态接口及联通 --- src/router/index.js | 36 ++++++++++++++++++------------------ 1 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 0ee88e2..a0c59c8 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -2,24 +2,24 @@ import Router from "vue-router" // import type from "@/router/deployCode" -import customRouter from "./custom/index.js" +import clientRouter from "./client/index.js" import salesRouter from "./sales/index.js" import serviceRouter from "./service/index.js" -import backgroundConfigRouter from "./backgroundConfig/index.js" +// import backgroundConfigRouter from "./backgroundConfig/index.js" Vue.use(Router) const login = (resolve) => require(["@/views/other/login/index"], resolve) -const custom = (resolve) => require(["@/views/custom/index"], resolve) +const client = (resolve) => require(["@/views/client/index"], resolve) const sales = (resolve) => require(["@/views/sales/index"], resolve) const service = (resolve) => require(["@/views/service/index"], resolve) -const background = (resolve) => require(["@/views/backgroundConfig/index"], resolve) +// const background = (resolve) => require(["@/views/backgroundConfig/index"], resolve) export const routes = [ { - path: "custom", // 瀹㈡埛绠$悊 - name: "custom", - component: custom, - children: customRouter, + path: "client", // 瀹㈡埛绠$悊 + name: "client", + component: client, + children: clientRouter, meta: { title: "瀹㈡埛绠$悊", isAllways: true @@ -44,17 +44,17 @@ title: "鏈嶅姟绠$悊", isAllways: true } - }, - { - path: "background", // 鍚庡彴璁剧疆 - name: "background", - component: background, - children: backgroundConfigRouter, - meta: { - title: "鍚庡彴璁剧疆", - isAllways: true - } } + // { + // path: "background", // 鍚庡彴璁剧疆 + // name: "background", + // component: background, + // children: backgroundConfigRouter, + // meta: { + // title: "鍚庡彴璁剧疆", + // isAllways: true + // } + // } ] export const constantRoutes = [ { -- Gitblit v1.8.0