Commit 30d20f6f authored by 刘殿昕's avatar 刘殿昕

流程图,技术支持

parent bf6cb630
This diff is collapsed.
......@@ -16,7 +16,8 @@ export default {
'/intelligent_drawing',
'/intelligent_details',
'/intelligent_appbuilder',
'/search_engine'
'/search_engine',
'/technical_support'
]
}),
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 {
verification() {
let self = this;
let data = JSON.parse(JSON.stringify(self.$refs.workFlow.getData()));
console.log(JSON.stringify(data))
let start_num = 0;
let end_num = 0;
let start_id = "";
......@@ -143,11 +144,11 @@ export default {
return nodep.id == item.meta.id;
});
item.meta = da;
if (item.meta.type == 0) {
if (item.meta.type == 1) {
start_num++;
start_id = item.id;
}
if (item.meta.type == 1) {
if (item.meta.type == 2) {
end_num++;
end_id = item.id;
}
......
......@@ -143,6 +143,12 @@ export default new Router({
},
],
}, // 工作台 - 应用管理模块
{
path: "/technical_support", // 技术支持
name: "technicalSupport",
component: () => import("@/pages/technical-support/index"),
},
{
path: "/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