|
|
@@ -2,6 +2,8 @@
|
|
|
import * as ProcessInstanceApi from '@/api/bpm/processInstance'
|
|
|
import { useUserStore } from '@/store/modules/user'
|
|
|
import { formatDate } from '@/utils/formatTime'
|
|
|
+import { DICT_TYPE, getDictLabel } from '@/utils/dict'
|
|
|
+import { decodeFields } from '@/utils/formCreate'
|
|
|
|
|
|
const userStore = useUserStore()
|
|
|
|
|
|
@@ -11,11 +13,15 @@ const loading = ref(false)
|
|
|
const printData = ref()
|
|
|
const userName = computed(() => userStore.user.nickname ?? '')
|
|
|
const printTime = ref(formatDate(new Date(), 'YYYY-MM-DD HH:mm'))
|
|
|
+const formFields = ref()
|
|
|
+const printDataMap = ref({})
|
|
|
|
|
|
const open = async (id: string) => {
|
|
|
loading.value = true
|
|
|
try {
|
|
|
printData.value = await ProcessInstanceApi.getProcessInstancePrintData(id)
|
|
|
+ initPrintDataMap()
|
|
|
+ parseFormFields()
|
|
|
console.log(printData.value)
|
|
|
} finally {
|
|
|
loading.value = false
|
|
|
@@ -24,6 +30,90 @@ const open = async (id: string) => {
|
|
|
}
|
|
|
defineExpose({ open })
|
|
|
|
|
|
+const parseFormFields = () => {
|
|
|
+ const formFieldsObj = decodeFields(printData.value.formFields)
|
|
|
+ const processVariables = printData.value.processVariables
|
|
|
+ let res: any = []
|
|
|
+ for (const item of formFieldsObj) {
|
|
|
+ const id = item['field']
|
|
|
+ const name = item['title']
|
|
|
+ let html = '暂不支持此类型的表单展示'
|
|
|
+ // TODO 完善各类型表单的展示
|
|
|
+ if (item['type'] === 'input') {
|
|
|
+ html = processVariables[item['field']]
|
|
|
+ }
|
|
|
+ if (item['type'] === 'UploadImg') {
|
|
|
+ html = `<img src="${processVariables[item['field']]}" style="max-width: 600px" />`
|
|
|
+ }
|
|
|
+ printDataMap.value[item['field']] = html
|
|
|
+ res.push({ id, name, html })
|
|
|
+ }
|
|
|
+ formFields.value = res
|
|
|
+}
|
|
|
+
|
|
|
+const initPrintDataMap = () => {
|
|
|
+ printDataMap.value['startUser'] = printData.value.startUser.nickname
|
|
|
+ printDataMap.value['startUserDept'] = printData.value.startUser.deptName
|
|
|
+ printDataMap.value['processName'] = printData.value.processName
|
|
|
+ printDataMap.value['processNum'] = printData.value.processInstanceId
|
|
|
+ printDataMap.value['startTime'] = printData.value.startTime
|
|
|
+ printDataMap.value['endTime'] = printData.value.endTime
|
|
|
+ printDataMap.value['processStatus'] = getDictLabel(
|
|
|
+ DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS,
|
|
|
+ printData.value.processStatus
|
|
|
+ )
|
|
|
+ printDataMap.value['printUsername'] = userName.value
|
|
|
+ printDataMap.value['printTime'] = printTime.value
|
|
|
+}
|
|
|
+
|
|
|
+const getPrintTemplateHTML = () => {
|
|
|
+ const parser = new DOMParser()
|
|
|
+ let doc = parser.parseFromString(printData.value.printTemplateHtml, 'text/html')
|
|
|
+ // table 添加border
|
|
|
+ let tables = doc.querySelectorAll('table')
|
|
|
+ tables.forEach((item) => {
|
|
|
+ item.setAttribute('border', '1')
|
|
|
+ item.setAttribute('style', (item.getAttribute('style') || '') + 'border-collapse:collapse;')
|
|
|
+ })
|
|
|
+ // 替换mentions
|
|
|
+ let mentions = doc.querySelectorAll('[data-w-e-type="mention"]')
|
|
|
+ mentions.forEach((item) => {
|
|
|
+ const mentionId = JSON.parse(decodeURIComponent(item.getAttribute('data-info') ?? ''))['id']
|
|
|
+ item.innerHTML = printDataMap.value[mentionId] ?? ''
|
|
|
+ })
|
|
|
+ // 替换流程记录
|
|
|
+ let processRecords = doc.querySelectorAll('[data-w-e-type="process-record"]')
|
|
|
+ let processRecordTable : Element = document.createElement('table')
|
|
|
+ if (processRecords.length > 0) {
|
|
|
+ // 构建流程记录html
|
|
|
+ processRecordTable.setAttribute('border', '1')
|
|
|
+ processRecordTable.setAttribute('style', 'width:100%;border-collapse:collapse;')
|
|
|
+ const headTr = document.createElement('tr')
|
|
|
+ const headTd = document.createElement('td')
|
|
|
+ headTd.setAttribute('colspan', '2')
|
|
|
+ headTd.setAttribute('width', 'auto')
|
|
|
+ headTd.setAttribute('style', 'text-align: center;')
|
|
|
+ headTd.innerHTML = '流程节点'
|
|
|
+ headTr.appendChild(headTd)
|
|
|
+ processRecordTable.appendChild(headTr)
|
|
|
+ printData.value.approveNodes.forEach(item => {
|
|
|
+ const tr = document.createElement('tr')
|
|
|
+ const td1 = document.createElement('td')
|
|
|
+ td1.innerHTML = item.nodeName
|
|
|
+ const td2 = document.createElement('td')
|
|
|
+ td2.innerHTML = item.nodeDesc
|
|
|
+ tr.appendChild(td1)
|
|
|
+ tr.appendChild(td2)
|
|
|
+ processRecordTable.appendChild(tr)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ processRecords.forEach(item => {
|
|
|
+ item.innerHTML = processRecordTable.outerHTML
|
|
|
+ })
|
|
|
+ // 返回html
|
|
|
+ return doc.body.innerHTML
|
|
|
+}
|
|
|
+
|
|
|
const printObj = ref({
|
|
|
id: 'printDivTag',
|
|
|
popTitle: ' ',
|
|
|
@@ -36,7 +126,7 @@ const printObj = ref({
|
|
|
<template>
|
|
|
<el-dialog v-loading="loading" v-model="visible" :show-close="false">
|
|
|
<div id="printDivTag">
|
|
|
- <div v-if="printData.printTemplateEnable" v-html="printData.printTemplateHtml"></div>
|
|
|
+ <div v-if="printData.printTemplateEnable" v-html="getPrintTemplateHTML()"></div>
|
|
|
<div v-else>
|
|
|
<h2 class="text-center">{{ printData.processName }}</h2>
|
|
|
<div class="text-right text-15px">{{ '打印人员: ' + userName }}</div>
|
|
|
@@ -48,27 +138,29 @@ const printObj = ref({
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
<td class="p-5px w-25%">发起人</td>
|
|
|
- <td class="p-5px w-25%">{{ printData.startUser }}</td>
|
|
|
+ <td class="p-5px w-25%">{{ printData.startUser.nickname }}</td>
|
|
|
<td class="p-5px w-25%">发起时间</td>
|
|
|
<td class="p-5px w-25%">{{ printData.startTime }}</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="p-5px w-25%">所属部门</td>
|
|
|
- <td class="p-5px w-25%">{{ printData.startUserDept }}</td>
|
|
|
+ <td class="p-5px w-25%">{{ printData.startUser.deptName }}</td>
|
|
|
<td class="p-5px w-25%">流程状态</td>
|
|
|
- <td class="p-5px w-25%">{{ printData.processStatusShow }}</td>
|
|
|
+ <td class="p-5px w-25%">
|
|
|
+ {{ getDictLabel(DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS, printData.processStatus) }}
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="p-5px w-100% text-center" colspan="4">
|
|
|
<h4>表单内容</h4>
|
|
|
</td>
|
|
|
</tr>
|
|
|
- <tr v-for="item in printData.formFields" :key="item.formId">
|
|
|
+ <tr v-for="item in formFields" :key="item.id">
|
|
|
<td class="p-5px w-20%">
|
|
|
- {{ item.formName }}
|
|
|
+ {{ item.name }}
|
|
|
</td>
|
|
|
<td class="p-5px w-80%" colspan="3">
|
|
|
- <div v-html="item.formValueShow"></div>
|
|
|
+ <div v-html="item.html"></div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
@@ -98,11 +190,4 @@ const printObj = ref({
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-dialog>
|
|
|
- <!-- TODO @lesan:最下面的 table 央视,可以去掉么? -->
|
|
|
</template>
|
|
|
-
|
|
|
-<style lang="scss">
|
|
|
-table {
|
|
|
- border-collapse: collapse;
|
|
|
-}
|
|
|
-</style>
|