update flow

This commit is contained in:
lb
2023-10-24 11:17:07 +08:00
parent 106d0ed89c
commit 6006ae13d9
6 changed files with 420 additions and 189 deletions

View File

@@ -23,10 +23,21 @@ export default {
components: { ProcessInfo, ProcessDetail, ProcessBomList },
props: {},
data() {
return {};
return {
flowId: null,
};
},
provide() {
const that = this;
return {
getFlowId() {
return that.flowId;
},
};
},
activated() {
console.log('activated...', this.$route.params);
this.flowId = this.$route.params.id;
},
computed: {},
methods: {},