update
This commit is contained in:
22
src/views/workflow/config/index.vue
Normal file
22
src/views/workflow/config/index.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<i-frame :src="workflowProcDefMgrUrl" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import iFrame from "@/components/iFrame/index";
|
||||
export default {
|
||||
name: "WorkflowConifg",
|
||||
components: { iFrame },
|
||||
data() {
|
||||
return {
|
||||
workflowProcDefMgrUrl: process.env.VUE_APP_WORKFLOW_MANAGE_URL + '/procDefMgr/list.do?customSso=1'
|
||||
};
|
||||
},
|
||||
created() {
|
||||
},
|
||||
methods: {
|
||||
}
|
||||
};
|
||||
</script>
|
||||
22
src/views/workflow/task/index.vue
Normal file
22
src/views/workflow/task/index.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<i-frame :src="workflowTaskMgrUrl" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import iFrame from "@/components/iFrame/index";
|
||||
export default {
|
||||
name: "WorkflowTask",
|
||||
components: { iFrame },
|
||||
data() {
|
||||
return {
|
||||
workflowTaskMgrUrl: process.env.VUE_APP_WORKFLOW_MANAGE_URL + '/taskMgr/list.do?customSso=1'
|
||||
};
|
||||
},
|
||||
created() {
|
||||
},
|
||||
methods: {
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user