end.vue
2.69 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<template>
<div class="app-container">
<taskCard :task="task" v-for="task in taskList" @sendToParent="showTask"/>
<pagination :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
<el-dialog :title="title" :visible.sync="open2" width="800px" append-to-body>
<threestepInfo :businessKey="businessKey" v-if="open2"/>
</el-dialog>
</div>
</template>
<style>
@import '../../../assets/css/task.css'
</style>
<script>
import {
listEndTask,
formDataShow
} from "@/api/activiti/taskhistory";
import taskCard from "@/views/activiti/task/taskCard";
import earthSitesForm from "@/views/workflow/earthSitesForm";
import threestepInfo from "@/views/business/threestep/threestepInfo";
export default {
name: "taskHistory",
components: {
taskCard,
threestepInfo,
earthSitesForm
},
data() {
return {
id: '',
definitionKey: '',
businessKey: '',
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 请假表格数据
taskList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
},
open2:false,
// 表单参数
form: {
formData: []
},
needShow:false,
// 表单校验
rules: {}
};
},
created() {
this.getList();
},
methods: {
/** 查询请假列表 */
getList() {
this.loading = true;
listEndTask(this.queryParams).then(response => {
this.taskList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.definitionKey = '',
this.businessKey = '',
this.form = {
formData: [],
};
this.resetForm("form");
},
showTask(row) {
this.needShow = false;
this.reset();
this.definitionKey = row.definitionKey;
this.businessKey = row.businessKey;
this.id = row.id;
this.title = "详情";
if(this.definitionKey == "workflow_threestep"){
this.open2 = true;
return;
}
this.open = true;
},
}
};
</script>