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="status" width="120">
77         <template #default="scope">
78           <dict-tag :type="DICT_TYPE.BPM_TASK_STATUS" :value="scope.row.status" />
79         </template>
80       </el-table-column>
81       <el-table-column align="center" label="审批建议" prop="reason" min-width="180" />
82       <el-table-column align="center" label="耗时" prop="durationInMillis" width="160">
83         <template #default="scope">
84           {{ formatPast2(scope.row.durationInMillis) }}
85         </template>
86       </el-table-column>
87       <el-table-column align="center" label="流程编号" prop="id" :show-overflow-tooltip="true" />
88       <el-table-column align="center" label="任务编号" prop="id" :show-overflow-tooltip="true" />
89       <el-table-column align="center" label="操作" fixed="right" width="80">
90         <template #default="scope">
91           <el-button link type="primary" @click="handleAudit(scope.row)">历史</el-button>
92         </template>
93       </el-table-column>
94     </el-table>
95     <!-- 分页 -->
96     <Pagination
97       v-model:limit="queryParams.pageSize"
98       v-model:page="queryParams.pageNo"
99       :total="total"
100       @pagination="getList"
101     />
102   </ContentWrap>
103 </template>
104 <script lang="ts" setup>
105 import { DICT_TYPE } from '@/utils/dict'
106 import { dateFormatter, formatPast2 } from '@/utils/formatTime'
107 import * as TaskApi from '@/api/bpm/task'
108
109 defineOptions({ name: 'BpmTodoTask' })
110
111 const { push } = useRouter() // 路由
112
113 const loading = ref(true) // 列表的加载中
114 const total = ref(0) // 列表的总页数
115 const list = ref([]) // 列表的数据
116 const queryParams = reactive({
117   pageNo: 1,
118   pageSize: 10,
119   name: '',
120   createTime: []
121 })
122 const queryFormRef = ref() // 搜索的表单
123
124 /** 查询任务列表 */
125 const getList = async () => {
126   loading.value = true
127   try {
128     const data = await TaskApi.getTaskDonePage(queryParams)
129     list.value = data.list
130     total.value = data.total
131   } finally {
132     loading.value = false
133   }
134 }
135
136 /** 搜索按钮操作 */
137 const handleQuery = () => {
138   queryParams.pageNo = 1
139   getList()
140 }
141
142 /** 重置按钮操作 */
143 const resetQuery = () => {
144   queryFormRef.value.resetFields()
145   handleQuery()
146 }
147
148 /** 处理审批按钮 */
149 const handleAudit = (row: any) => {
150   push({
151     name: 'BpmProcessInstanceDetail',
152     query: {
153       id: row.processInstance.id
154     }
155   })
156 }
157
158 /** 初始化 **/
159 onMounted(() => {
160   getList()
161 })
162 </script>