流程台账界面完成

This commit is contained in:
aixianling
2022-08-10 17:41:42 +08:00
parent bf1348fa63
commit 55da7871ee
4 changed files with 104 additions and 13 deletions

View File

@@ -7,10 +7,11 @@
<script>
import List from "./list";
import Add from "./add";
import WorkflowLogs from "./workflowLogs";
export default {
name: "AppWorkflowManage",
components: {Add, List},
components: {WorkflowLogs, Add, List},
label: "工作流管理",
props: {
instance: Function,
@@ -20,7 +21,8 @@ export default {
computed: {
currentPage() {
let {hash} = this.$route
return hash == "#add" ? Add : List
return hash == "#add" ? Add :
hash == "#logs" ? WorkflowLogs : List
}
},
created() {