You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.7 KiB
52 lines
1.7 KiB
1 year ago
|
<template>
|
||
|
<Dialog v-model="dialogVisible" :max-height="500" :scroll="true" title="详情">
|
||
|
<el-descriptions :column="1" border>
|
||
|
<el-descriptions-item label="任务编号" min-width="120">
|
||
|
{{ detailData.id }}
|
||
|
</el-descriptions-item>
|
||
|
<el-descriptions-item label="任务名称">
|
||
|
{{ detailData.name }}
|
||
|
</el-descriptions-item>
|
||
|
<el-descriptions-item label="所属流程">
|
||
|
{{ detailData.processInstance.name }}
|
||
|
</el-descriptions-item>
|
||
|
<el-descriptions-item label="流程发起人">
|
||
|
{{ detailData.processInstance.startUserNickname }}
|
||
|
</el-descriptions-item>
|
||
|
<el-descriptions-item label="状态">
|
||
|
<dict-tag :type="DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT" :value="detailData.result" />
|
||
|
</el-descriptions-item>
|
||
|
<el-descriptions-item label="原因">
|
||
|
{{ detailData.reason }}
|
||
|
</el-descriptions-item>
|
||
|
<el-descriptions-item label="创建时间">
|
||
|
{{ formatDate(detailData.createTime) }}
|
||
|
</el-descriptions-item>
|
||
|
</el-descriptions>
|
||
|
</Dialog>
|
||
|
</template>
|
||
|
<script lang="ts" setup>
|
||
|
import { DICT_TYPE } from '@/utils/dict'
|
||
|
import { formatDate } from '@/utils/formatTime'
|
||
|
import * as TaskApi from '@/api/bpm/task'
|
||
|
|
||
|
defineOptions({ name: 'BpmTaskDetail' })
|
||
|
|
||
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
||
|
const detailLoading = ref(false) // 表单的加载中
|
||
|
const detailData = ref() // 详情数据
|
||
|
|
||
|
/** 打开弹窗 */
|
||
|
const open = async (data: TaskApi.TaskVO) => {
|
||
|
dialogVisible.value = true
|
||
|
// 设置数据
|
||
|
detailLoading.value = true
|
||
|
try {
|
||
|
detailData.value = data
|
||
|
} finally {
|
||
|
detailLoading.value = false
|
||
|
}
|
||
|
}
|
||
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||
|
</script>
|