mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-20 15:22:00 +08:00
90 lines
2.8 KiB
Vue
90 lines
2.8 KiB
Vue
![]() |
<template>
|
|||
|
<el-card class="box-card" v-loading="loading">
|
|||
|
<template #header>
|
|||
|
<span class="el-icon-picture-outline">审批记录</span>
|
|||
|
</template>
|
|||
|
<el-col :span="16" :offset="4">
|
|||
|
<div class="block">
|
|||
|
<el-timeline>
|
|||
|
<el-timeline-item
|
|||
|
v-for="(item, index) in tasks"
|
|||
|
:key="index"
|
|||
|
:icon="getTimelineItemIcon(item)"
|
|||
|
:type="getTimelineItemType(item)"
|
|||
|
>
|
|||
|
<p style="font-weight: 700">任务:{{ item.name }}</p>
|
|||
|
<el-card :body-style="{ padding: '10px' }">
|
|||
|
<label v-if="item.assigneeUser" style="font-weight: normal; margin-right: 30px">
|
|||
|
审批人:{{ item.assigneeUser.nickname }}
|
|||
|
<el-tag type="info" size="small">{{ item.assigneeUser.deptName }}</el-tag>
|
|||
|
</label>
|
|||
|
<label style="font-weight: normal" v-if="item.createTime">创建时间:</label>
|
|||
|
<label style="color: #8a909c; font-weight: normal">
|
|||
|
{{ parseTime(item?.createTime) }}
|
|||
|
</label>
|
|||
|
<label v-if="item.endTime" style="margin-left: 30px; font-weight: normal">
|
|||
|
审批时间:
|
|||
|
</label>
|
|||
|
<label v-if="item.endTime" style="color: #8a909c; font-weight: normal">
|
|||
|
{{ parseTime(item?.endTime) }}
|
|||
|
</label>
|
|||
|
<label v-if="item.durationInMillis" style="margin-left: 30px; font-weight: normal">
|
|||
|
耗时:
|
|||
|
</label>
|
|||
|
<label v-if="item.durationInMillis" style="color: #8a909c; font-weight: normal">
|
|||
|
{{ formatPast2(item?.durationInMillis) }}
|
|||
|
</label>
|
|||
|
<p v-if="item.reason">
|
|||
|
<el-tag :type="getTimelineItemType(item)">{{ item.reason }}</el-tag>
|
|||
|
</p>
|
|||
|
</el-card>
|
|||
|
</el-timeline-item>
|
|||
|
</el-timeline>
|
|||
|
</div>
|
|||
|
</el-col>
|
|||
|
</el-card>
|
|||
|
</template>
|
|||
|
<script setup lang="ts">
|
|||
|
import { parseTime, formatPast2 } from '@/utils/formatTime'
|
|||
|
import { propTypes } from '@/utils/propTypes'
|
|||
|
|
|||
|
defineProps({
|
|||
|
loading: propTypes.bool, // 是否加载中
|
|||
|
tasks: propTypes.array // 流程任务的数组
|
|||
|
})
|
|||
|
|
|||
|
/** 获得任务对应的 icon */
|
|||
|
const getTimelineItemIcon = (item) => {
|
|||
|
if (item.result === 1) {
|
|||
|
return 'el-icon-time'
|
|||
|
}
|
|||
|
if (item.result === 2) {
|
|||
|
return 'el-icon-check'
|
|||
|
}
|
|||
|
if (item.result === 3) {
|
|||
|
return 'el-icon-close'
|
|||
|
}
|
|||
|
if (item.result === 4) {
|
|||
|
return 'el-icon-remove-outline'
|
|||
|
}
|
|||
|
return ''
|
|||
|
}
|
|||
|
|
|||
|
/** 获得任务对应的颜色 */
|
|||
|
const getTimelineItemType = (item) => {
|
|||
|
if (item.result === 1) {
|
|||
|
return 'primary'
|
|||
|
}
|
|||
|
if (item.result === 2) {
|
|||
|
return 'success'
|
|||
|
}
|
|||
|
if (item.result === 3) {
|
|||
|
return 'danger'
|
|||
|
}
|
|||
|
if (item.result === 4) {
|
|||
|
return 'info'
|
|||
|
}
|
|||
|
return ''
|
|||
|
}
|
|||
|
</script>
|