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 +1 -1
- package/src/layout/index.vue +6 -9
- package/src/router/index.js +4 -7
- package/src/router/modules/customer.js +13 -4
- package/src/views/user/wf/wf_manage/list2.vue +802 -0
- package/src/layout/components/callCenter/agentState.js +0 -69
- package/src/layout/components/callCenter/config.js +0 -22
- package/src/layout/components/callCenter/default.vue +0 -768
- package/src/layout/components/callCenter/index.vue +0 -101
package/package.json
CHANGED
package/src/layout/index.vue
CHANGED
|
@@ -1,20 +1,17 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
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:
|
|
9
|
+
name: 'Layout',
|
|
14
10
|
components: {
|
|
15
|
-
defaultLayout
|
|
16
|
-
callCenter,
|
|
11
|
+
defaultLayout
|
|
17
12
|
},
|
|
18
13
|
};
|
|
19
14
|
</script>
|
|
20
|
-
<style lang="scss" scoped
|
|
15
|
+
<style lang="scss" scoped>
|
|
16
|
+
</style>
|
|
17
|
+
|
package/src/router/index.js
CHANGED
|
@@ -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
|
-
|