流程台账界面完成
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user