feat: 完善UserTask审批签名

pull/655/head
Lesan 2025-01-09 13:50:08 +08:00
parent dd72d35fe4
commit 04f4f630ad
4 changed files with 117 additions and 1 deletions

View File

@ -36,6 +36,7 @@ export type ApprovalTaskInfo = {
assigneeUser: User
status: number
reason: string
sign: string
}
// 审批节点信息

View File

@ -44,6 +44,12 @@
:rows="4"
/>
</el-form-item>
<el-form-item v-if="runningTask.signEnable" label="签名" prop="sign" ref="approveSignFormRef">
<el-button @click="signRef.open()"></el-button>
<el-image class="w-90px h-40px ml-5px" v-if="approveReasonForm.sign"
:src="approveReasonForm.sign"
:preview-src-list="[approveReasonForm.sign]"/>
</el-form-item>
<el-form-item>
<el-button :disabled="formLoading" type="success" @click="handleAudit(true, approveFormRef)">
{{ getButtonDisplayName(OperationButtonType.APPROVE) }}
@ -471,6 +477,8 @@
<Icon :size="14" icon="ep:refresh" />&nbsp; 再次提交
</div>
</div>
<SignDialog ref="signRef" @success="handleSignFinish"/>
</template>
<script lang="ts" setup>
import { useUserStoreWithOut } from '@/store/modules/user'
@ -484,6 +492,7 @@ import {
} from '@/components/SimpleProcessDesignerV2/src/consts'
import { BpmProcessInstanceStatus, BpmModelFormType } from '@/utils/constants'
import type { FormInstance, FormRules } from 'element-plus'
import SignDialog from "./SignDialog.vue";
defineOptions({ name: 'ProcessInstanceBtnContainer' })
const router = useRouter() //
@ -522,11 +531,15 @@ const approveFormFApi = ref<any>({}) // approveForms 的 fAPi
//
const approveFormRef = ref<FormInstance>()
const signRef = ref()
const approveSignFormRef = ref()
const approveReasonForm = reactive({
reason: ''
reason: '',
sign: ''
})
const approveReasonRule = reactive<FormRules<typeof approveReasonForm>>({
reason: [{ required: true, message: '审批意见不能为空', trigger: 'blur' }],
sign: [{ required: true, message: '签名不能为空', trigger: 'change' }]
})
//
const rejectFormRef = ref<FormInstance>()
@ -672,6 +685,10 @@ const handleAudit = async (pass: boolean, formRef: FormInstance | undefined) =>
reason: approveReasonForm.reason,
variables // ,
}
//
if (runningTask.value.signEnable) {
data.sign = approveReasonForm.sign
}
// approveForm + data
// TODO
const formCreateApi = approveFormFApi.value
@ -966,6 +983,11 @@ const getUpdatedProcessInstanceVaiables = ()=> {
return variables
}
const handleSignFinish = (url) => {
approveReasonForm.sign = url
approveSignFormRef.value.validate('change')
}
defineExpose({ loadTodoTask })
</script>

View File

@ -123,6 +123,15 @@
>
审批意见{{ task.reason }}
</div>
<div
v-if="task.sign && activity.nodeType === NodeType.USER_TASK_NODE"
class="text-#a5a5a5 text-13px mt-1 w-full bg-#f8f8fa p2 rounded-md"
>
签名
<el-image class="w-90px h-40px ml-5px"
:src="task.sign"
:preview-src-list="[task.sign]"/>
</div>
</teleport>
</div>
<!-- 情况二遍历每个审批节点下的候选的task 任务例如说1依次审批2未来的审批任务等 -->

View File

@ -0,0 +1,84 @@
<template>
<el-dialog
v-model="signDialogVisible"
title="签名"
width="935"
>
<div class="position-relative">
<Vue3Signature class="b b-solid b-gray" ref="signature" w="900px" h="400px"/>
<el-button
style="position: absolute; bottom: 20px; right: 10px"
type="primary"
text
size="small"
@click="signature.clear()"
>
<Icon icon="ep:delete" class="mr-5px"/>
清除
</el-button>
</div>
<template #footer>
<div class="dialog-footer">
<el-button @click="signDialogVisible = false">取消</el-button>
<el-button type="primary" @click="submit">
提交
</el-button>
</div>
</template>
</el-dialog>
</template>
<script setup lang="ts">
import Vue3Signature from "vue3-signature"
import * as FileApi from '@/api/infra/file'
const message = useMessage() //
const signDialogVisible = ref(false)
const signature = ref()
const open = async () => {
signDialogVisible.value = true
}
defineExpose({open})
const emits = defineEmits(['success'])
const submit = async () => {
message.success('签名上传中请稍等。。。')
const res = await FileApi.updateFile({file: base64ToFile(signature.value.save('image/png'), '签名')})
emits('success', res.data)
signDialogVisible.value = false
}
const base64ToFile = (base64, fileName) => {
// base64 ,
let data = base64.split(',');
// image/pngimage/jpegimage/webp
let type = data[0].match(/:(.*?);/)[1];
// pngjpegwebp
let suffix = type.split('/')[1];
// 使atob()base64
const bstr = window.atob(data[1]);
//
let n = bstr.length
//
// 0
const u8arr = new Uint8Array(n)
// UTF-16
while (n--) {
// charCodeAt() UTF-16
u8arr[n] = bstr.charCodeAt(n)
}
// File
// new File(bits, name, options)
const file = new File([u8arr], `${fileName}.${suffix}`, {
type: type
})
// File
return file;
}
</script>
<style scoped>
</style>