houzhongjian
2024-11-27 9e876a11f6f0b384d4b1f0a60e066944dbcdeaa5
提交 | 用户 | 时间
820397 1 <template>
H 2   <ContentWrap>
3     <!-- 搜索工作栏 -->
4     <el-form
5       ref="queryFormRef"
6       :inline="true"
7       :model="queryParams"
8       class="-mb-15px"
9       label-width="68px"
10     >
11       <el-form-item label="任务名称" prop="name">
12         <el-input
13           v-model="queryParams.name"
14           class="!w-240px"
15           clearable
16           placeholder="请输入任务名称"
17           @keyup.enter="handleQuery"
18         />
19       </el-form-item>
20       <el-form-item label="创建时间" prop="createTime">
21         <el-date-picker
22           v-model="queryParams.createTime"
23           :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
24           class="!w-240px"
25           end-placeholder="结束日期"
26           start-placeholder="开始日期"
27           type="daterange"
28           value-format="YYYY-MM-DD HH:mm:ss"
29         />
30       </el-form-item>
31       <el-form-item>
32         <el-button @click="handleQuery">
33           <Icon class="mr-5px" icon="ep:search" />
34           搜索
35         </el-button>
36         <el-button @click="resetQuery">
37           <Icon class="mr-5px" icon="ep:refresh" />
38           重置
39         </el-button>
40       </el-form-item>
41     </el-form>
42   </ContentWrap>
43
44   <!-- 列表 -->
45   <ContentWrap>
46     <el-table v-loading="loading" :data="list">
47       <el-table-column align="center" label="流程" prop="processInstance.name" width="180" />
48       <el-table-column
49         align="center"
50         label="发起人"
51         prop="processInstance.startUser.nickname"
52         width="100"
53       />
54       <el-table-column
55         :formatter="dateFormatter"
56         align="center"
57         label="发起时间"
58         prop="createTime"
59         width="180"
60       />
61       <el-table-column align="center" label="当前任务" prop="name" width="180" />
62       <el-table-column
63         :formatter="dateFormatter"
64         align="center"
65         label="任务开始时间"
66         prop="createTime"
67         width="180"
68       />
69       <el-table-column
70         :formatter="dateFormatter"
71         align="center"
72         label="任务结束时间"
73         prop="endTime"
74         width="180"
75       />
76       <el-table-column align="center" label="审批人" prop="assigneeUser.nickname" width="100" />
77       <el-table-column align="center" label="审批状态" prop="status" width="120">
78         <template #default="scope">
79           <dict-tag :type="DICT_TYPE.BPM_TASK_STATUS" :value="scope.row.status" />
80         </template>
81       </el-table-column>
82       <el-table-column align="center" label="审批建议" prop="reason" min-width="180" />
83       <el-table-column align="center" label="耗时" prop="durationInMillis" width="160">
84         <template #default="scope">
85           {{ formatPast2(scope.row.durationInMillis) }}
86         </template>
87       </el-table-column>
88       <el-table-column align="center" label="流程编号" prop="id" :show-overflow-tooltip="true" />
89       <el-table-column align="center" label="任务编号" prop="id" :show-overflow-tooltip="true" />
90       <el-table-column align="center" label="操作" fixed="right" width="80">
91         <template #default="scope">
92           <el-button link type="primary" @click="handleAudit(scope.row)">历史</el-button>
93         </template>
94       </el-table-column>
95     </el-table>
96     <!-- 分页 -->
97     <Pagination
98       v-model:limit="queryParams.pageSize"
99       v-model:page="queryParams.pageNo"
100       :total="total"
101       @pagination="getList"
102     />
103   </ContentWrap>
104 </template>
105 <script lang="ts" setup>
106 import { DICT_TYPE } from '@/utils/dict'
107 import { dateFormatter, formatPast2 } from '@/utils/formatTime'
108 import * as TaskApi from '@/api/bpm/task'
109
110 // 它和【待办任务】【已办任务】的差异是,该菜单可以看全部的流程任务
111 defineOptions({ name: 'BpmManagerTask' })
112
113 const { push } = useRouter() // 路由
114
115 const loading = ref(true) // 列表的加载中
116 const total = ref(0) // 列表的总页数
117 const list = ref([]) // 列表的数据
118 const queryParams = reactive({
119   pageNo: 1,
120   pageSize: 10,
121   name: '',
122   createTime: []
123 })
124 const queryFormRef = ref() // 搜索的表单
125
126 /** 查询任务列表 */
127 const getList = async () => {
128   loading.value = true
129   try {
130     const data = await TaskApi.getTaskManagerPage(queryParams)
131     list.value = data.list
132     total.value = data.total
133   } finally {
134     loading.value = false
135   }
136 }
137
138 /** 搜索按钮操作 */
139 const handleQuery = () => {
140   queryParams.pageNo = 1
141   getList()
142 }
143
144 /** 重置按钮操作 */
145 const resetQuery = () => {
146   queryFormRef.value.resetFields()
147   handleQuery()
148 }
149
150 /** 处理审批按钮 */
151 const handleAudit = (row: any) => {
152   push({
153     name: 'BpmProcessInstanceDetail',
154     query: {
155       id: row.processInstance.id
156     }
157   })
158 }
159
160 /** 初始化 **/
161 onMounted(() => {
162   getList()
163 })
164 </script>