Commit 6e896431 authored by 刘殿昕's avatar 刘殿昕

Merge branch 'ldx' into dev

parents 3d8b54a4 30d20f6f
This diff is collapsed.
...@@ -16,7 +16,8 @@ export default { ...@@ -16,7 +16,8 @@ export default {
'/intelligent_drawing', '/intelligent_drawing',
'/intelligent_details', '/intelligent_details',
'/intelligent_appbuilder', '/intelligent_appbuilder',
'/search_engine' '/search_engine',
'/technical_support'
] ]
}), }),
created(){ created(){
......
<template>
<div class="contain"></div>
</template>
<script>
export default {
data() {
return {};
},
components: {},
computed: {},
created() {},
mounted() {},
methods: {},
};
</script>
<style>
</style>
...@@ -128,6 +128,7 @@ export default { ...@@ -128,6 +128,7 @@ export default {
verification() { verification() {
let self = this; let self = this;
let data = JSON.parse(JSON.stringify(self.$refs.workFlow.getData())); let data = JSON.parse(JSON.stringify(self.$refs.workFlow.getData()));
console.log(JSON.stringify(data))
let start_num = 0; let start_num = 0;
let end_num = 0; let end_num = 0;
let start_id = ""; let start_id = "";
...@@ -143,11 +144,11 @@ export default { ...@@ -143,11 +144,11 @@ export default {
return nodep.id == item.meta.id; return nodep.id == item.meta.id;
}); });
item.meta = da; item.meta = da;
if (item.meta.type == 0) { if (item.meta.type == 1) {
start_num++; start_num++;
start_id = item.id; start_id = item.id;
} }
if (item.meta.type == 1) { if (item.meta.type == 2) {
end_num++; end_num++;
end_id = item.id; end_id = item.id;
} }
......
...@@ -143,6 +143,12 @@ export default new Router({ ...@@ -143,6 +143,12 @@ export default new Router({
}, },
], ],
}, // 工作台 - 应用管理模块 }, // 工作台 - 应用管理模块
{
path: "/technical_support", // 技术支持
name: "technicalSupport",
component: () => import("@/pages/technical-support/index"),
},
{ {
path: "/shop", // 服务超市 path: "/shop", // 服务超市
name: "shop", name: "shop",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment