1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| <template>
| <div>
| <a-card>
| <a-tabs default-active-key="1" force-render>
| <a-tab-pane key="1" tab="我发起的流程">
| <create-workflow></create-workflow>
| </a-tab-pane>
| <a-tab-pane key="2" tab="未审核流程" >
| <un-auditor-workflow></un-auditor-workflow>
| </a-tab-pane>
| <a-tab-pane key="3" tab="已审核流程">
| <auditor-workflow></auditor-workflow>
| </a-tab-pane>
| </a-tabs>
| </a-card>
| </div>
| </template>
|
| <script>
| import { XCard } from '@/components'
| import CreateWorkflow from './create.vue'
| import UnAuditorWorkflow from './unauditor.vue'
| import AuditorWorkflow from './auditor.vue'
| export default {
| name: 'WorkflowList',
| components: {
| XCard,
| CreateWorkflow,
| UnAuditorWorkflow,
| AuditorWorkflow
| },
| data() {
| return {
|
| }
| },
| methods: {
|
| }
| }
| </script>
|
| <style>
|
| </style>
|
|