cloud-web-corejs 1.0.54-dev.637 → 1.0.54-dev.638

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.54-dev.637",
4
+ "version": "1.0.54-dev.638",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -1,20 +1,17 @@
1
1
  <template>
2
- <div>
3
- <defaultLayout></defaultLayout>
4
- <callCenter></callCenter>
5
- </div>
2
+ <defaultLayout></defaultLayout>
6
3
  </template>
7
4
 
8
5
  <script>
9
6
  import defaultLayout from "@base/layout/defaultLayout.vue";
10
- import callCenter from "./components/callCenter/index.vue";
11
7
 
12
8
  export default {
13
- name: "Layout",
9
+ name: 'Layout',
14
10
  components: {
15
- defaultLayout,
16
- callCenter,
11
+ defaultLayout
17
12
  },
18
13
  };
19
14
  </script>
20
- <style lang="scss" scoped></style>
15
+ <style lang="scss" scoped>
16
+ </style>
17
+
@@ -3,13 +3,10 @@ import Router from "vue-router";
3
3
 
4
4
  Vue.use(Router);
5
5
 
6
- import {constantRoutes as route1s} from "@base/router/modules/system";
7
- import {constantRoutes as route2s} from "@/router/modules/customer";
6
+ import { constantRoutes as route1s } from "@base/router/modules/system";
7
+ import { constantRoutes as route2s } from "@/router/modules/customer";
8
8
 
9
- export const constantRoutes = [
10
- ...route1s,
11
- ...route2s
12
- ];
9
+ export const constantRoutes = [...route2s, ...route1s];
13
10
 
14
11
  const createRouter = () =>
15
12
  new Router({
@@ -17,7 +14,7 @@ const createRouter = () =>
17
14
  scrollBehavior: () => ({
18
15
  y: 0,
19
16
  }),
20
- routes: constantRoutes
17
+ routes: constantRoutes,
21
18
  });
22
19
 
23
20
  const router = createRouter();
@@ -1,8 +1,17 @@
1
1
  export const constantRoutes = [
2
- /*{
2
+ {
3
3
  path: "",
4
4
  component: () => import("@/layout/index"),
5
- children: []
6
- }*/
5
+ children: [
6
+ {
7
+ path: "/basic/wf/wf_manage/list",
8
+ component: () => import("@base/views/user/wf/wf_manage/list2"),
9
+ name: "wf_manage:list",
10
+ meta: {
11
+ title: "流程待办",
12
+ icon: "dashboard",
13
+ },
14
+ },
15
+ ],
16
+ },
7
17
  ];
8
-