<!-- 文件发放通知单详情 --> <script name="FileGrantNoticeDetail" lang="ts" setup> import { ElMessage, ElMessageBox, dayjs } from 'element-plus' import type { IFileApprovalForm } from '../approval/approval-interface' import type { IFileGrandNotice, IFileNoticeInfo } from './notice-interface' import FileSelectDialog from './fileSelectDialog.vue' import type { IDictType } from '@/commonInterface/resource-interface' import type { TableColumn } from '@/components/NormalTable/table_interface' import ApprovalDialog from '@/views/resource/common/approvalDialog.vue' import ApprovalRecordTable from '@/components/ApprovalRecord/ApprovalRecordTable.vue' import useUserStore from '@/store/modules/user' import { getDictByCode } from '@/api/system/dict' import { detailGrantNotice, failUpdateGrantNotice, refuseApproval, revokeApproval, revokeDelete, saveGrantNotice, submitGrantNotice, updateDraftNotice } from '@/api/resource/fileGrantNotice' // 从路由中传过来的参数 const type = ref<string>('') const id = ref<string>('') const status = ref<string>('') // 关键字段是否可以编辑 const keyFieldsDisable = ref<boolean>(true) const flowFormId = 'zyglwjfftzd' // 资源管理 - 文件发放通知单 const userInfo = useUserStore() const route = useRoute() const router = useRouter() const title = ref('') const radioItems = ref([ { name: '基本信息', value: 'notice-basic' }, { name: '审批详情', value: 'notice-approval' }, ]) const current = ref('') const currentLabel = ref('') // 弹窗子组件 const apprDial = ref() const grantNoticeRef = ref() const refFileSelect = ref() const grantNoticeRules = ref({ labCode: [{ required: true, message: '实验室代码不能为空,请选择', trigger: ['change', 'blur'] }], groupCode: [{ required: true, message: '组别代码不能为空,请选择', trigger: ['change', 'blur'] }], }) // 表单验证规则 // 是否显示相关按钮 const saveButtVisable = ref<boolean>(false) // 是否显示 保存 按钮 const submitButtVisable = ref<boolean>(false) // 是否显示 提交 按钮 const flowButtsVisable = ref<boolean>(false) // 是否显示 同意和拒绝 按钮 const cancelButtVisable = ref<boolean>(false) // 是否显示 取消 按钮 const deleteButtVisable = ref<boolean>(false) // 是否显示 删除 按钮 const editButtVisable = ref<boolean>(false) // 是否显示 编辑 按钮 const grantNoticeForm = ref<IFileGrandNotice>({ id: '', formNo: '', formName: '文件发放通知单', labCode: '', labCodeName: '', groupCode: '', groupCodeName: '', processId: '', taskId: '', createTime: '', createUserId: '', createUserName: '', fileList: [], }) const fileColumns = ref<Array<TableColumn>>([ { text: '文件编号', value: 'fileNo', align: 'center', width: '240' }, { text: '文件名称', value: 'fileName', align: 'center', width: '240' }, { text: '更改内容', value: 'changeContent', align: 'center' }, ]) // 表头 // 字典值 const labCodeDict = ref<IDictType[]>([]) const groupCodeDict = ref<IDictType[]>([]) const fileRecordSelected = ref<IFileNoticeInfo[]>([]) // 逻辑 // 详情页的各个tab切换操作 const radioChangeHandler = (newVal: string | number | boolean) => { const radioTarget = radioItems.value.filter(item => item.name === newVal) if (radioTarget.length > 0) { currentLabel.value = radioTarget[0].name current.value = radioTarget[0].value } else { currentLabel.value = radioItems.value[0].name current.value = radioItems.value[0].value } } // 将所有流程操作的按钮隐藏 const hideAllOpterationButtons = () => { saveButtVisable.value = false submitButtVisable.value = false flowButtsVisable.value = false cancelButtVisable.value = false deleteButtVisable.value = false editButtVisable.value = false } // 根据审批状态显示对应的流程操作按钮 const showOperationButtonByStatus = () => { switch (status.value) { case '1': // 草稿箱:保存、提交按钮可见 saveButtVisable.value = true submitButtVisable.value = true break case '2': // 待审批:同意、拒绝按钮可见 flowButtsVisable.value = true break case '3': // 审批中:取消按钮可见 cancelButtVisable.value = true break case '5': // 未通过:编辑 按钮可见 editButtVisable.value = true break case '6': // 已取消:编辑 删除按钮可见 editButtVisable.value = true deleteButtVisable.value = true break default: // 默认不显示所有的操作按钮 hideAllOpterationButtons() break } } // 关闭 const resetForm = () => { sessionStorage.removeItem('grantNoticeTaskId') router.go(-1) } // 新增 const addEditableRow = () => { refFileSelect.value.showRecordDialog(true, '新增') } const delFileRecords = () => { if (fileRecordSelected.value.length === 0) { ElMessage.warning('请至少选择一行') return } grantNoticeForm.value.fileList = grantNoticeForm.value.fileList.filter(item => fileRecordSelected.value.includes(item) === false) } const fileMultiSelect = (e: any) => { fileRecordSelected.value = e } // 根据id查询详情 const detailById = async (id: string) => { await detailGrantNotice({ id }).then((res) => { if (res.code === 200) { grantNoticeForm.value = res.data if (grantNoticeForm.value.taskId === '') { grantNoticeForm.value.taskId = sessionStorage.getItem('grantNoticeTaskId')! } } }) } // 保存至草稿箱 const saveGrantNoticeForm = () => { grantNoticeForm.value.createTime = dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss') // 创建时间改为提交时间 saveGrantNotice(grantNoticeForm.value).then((res) => { if (res.code === 200) { // 提示保存成功 ElMessage.success('保存成功') // 设置返回的通知单id和通知单编号 grantNoticeForm.value.formNo = res.data.formNo grantNoticeForm.value.id = res.data.id id.value = res.data.id type.value = 'update' status.value = '1' // 保存成功后进入草稿箱 为了不显示审批详情 } else { // 提示失败信息 ElMessage.error(`保存失败:${res.message}`) } }) } // 编辑草稿箱(不走流程审批) const updateGrantNoticeForm = () => { updateDraftNotice(grantNoticeForm.value).then((res) => { if (res.code === 200) { // 提示保存成功 ElMessage.success('保存成功') } else { // 提示失败信息 ElMessage.error(`保存失败:${res.message}`) } }) } // 编辑按钮点击事件处理函数 const editClickedHandler = () => { type.value = 'update' title.value = '文件发放通知单(编辑)' // 隐藏编辑按钮 显示提交按钮 editButtVisable.value = false submitButtVisable.value = true } // 新建时保存后的处理 获取返回的id const saveButtonHandler = async () => { if (!grantNoticeRef) { return } if (grantNoticeForm.value.fileList.length === 0) { ElMessage.error('文件列表不能为空,请选择文件') return } await grantNoticeRef.value.validate((valid: boolean) => { if (valid === true) { ElMessageBox.confirm( '确认保存吗?', '提示', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning', }, ).then(() => { if (type.value === 'create') { saveGrantNoticeForm() } else if (type.value === 'update') { updateGrantNoticeForm() } }) } }) } // 提交按钮 const submitButtonHandler = async () => { if (grantNoticeForm.value === null || grantNoticeForm.value.processId === undefined || grantNoticeForm.value.processId === '') { // 流程id为空 表示还未进入流程中 直接提交 ElMessageBox.confirm(`是否提交文件发放通知单 ${grantNoticeForm.value.formNo}`, '提示', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning', }).then(() => { submitGrantNotice({ formId: flowFormId, id: grantNoticeForm.value.id, }).then((res) => { if (res.code === 200) { ElMessage.success(`文件发放通知单 ${grantNoticeForm.value.formNo} 提交成功`) type.value = 'detail' hideAllOpterationButtons() } else { ElMessage.error(`文件发放通知单 ${grantNoticeForm.value.formNo} 提交失败:${res.message}`) } }) }) } else { // 之前已经在流程中的表单 保存提交 await grantNoticeRef.value.validate((valid: boolean) => { if (valid === true) { failUpdateGrantNotice(grantNoticeForm.value).then((res) => { if (res.code === 200) { // 提示保存成功 ElMessage.success(`文件发放通知单 ${grantNoticeForm.value.formNo} 提交成功`) type.value = 'detail' hideAllOpterationButtons() } else { // 提示失败信息 ElMessage.error(`文件发放通知单 ${grantNoticeForm.value.formNo} 提交失败:${res.message}`) } }) } }) } } // 选定文件返回 const appendFileToList = (rows: IFileApprovalForm[], content: string) => { rows.forEach((row) => { const existList = grantNoticeForm.value.fileList.filter(file => file.fileApprovalId === row.id) if (existList.length === 0) { grantNoticeForm.value.fileList.push({ id: '', fileApprovalId: row.id, fileNo: row.fileNo, fileName: row.fileName, changeContent: content, }) } }) } // 流程审批-同意 const approvalAgreeHandler = () => { apprDial.value.initDialog('agree', grantNoticeForm.value.id, grantNoticeForm.value.taskId, '') } // 流程审批-拒绝 const approvalRefuseHandler = () => { apprDial.value.initDialog('refuse', grantNoticeForm.value.id, grantNoticeForm.value.taskId, '') } // 取消(撤回审批单) const revokeClickedHandler = () => { apprDial.value.initDialog('revoke', grantNoticeForm.value.id, grantNoticeForm.value.taskId, grantNoticeForm.value.processId) } // 删除(只有已取消的可以在详情中删除) const deleteClickedHandler = () => { ElMessageBox.confirm( `确认删除文件发放通知单 ${grantNoticeForm.value.formNo} 吗?`, '提示', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning', }, ).then(() => { revokeDelete({ id: grantNoticeForm.value.id, taskId: grantNoticeForm.value.taskId }).then((res) => { if (res.code === 200) { ElMessage.success(`文件发放通知单 ${grantNoticeForm.value.formNo} 删除成功`) resetForm() } else { ElMessage.error(`文件发放通知单 ${grantNoticeForm.value.formNo} 删除失败:${res.message}`) } }) }) } // 流程操作之后刷新 const approvalSuccessHandler = (type: string) => { if (type === 'agree' || type === 'refuse') { flowButtsVisable.value = false } else if (type === 'revoke') { cancelButtVisable.value = false } } // 取消 const revokeHandler = (param: any) => { revokeApproval(param).then((res) => { if (res.code === 200) { ElMessage.success('流程取消成功') } else { ElMessage.error(`流程取消失败:${res.message}`) } // 关闭弹窗 apprDial.value.handleClose() cancelButtVisable.value = false }) } // 拒绝 const refuseHandler = (param: any) => { refuseApproval(param).then((res) => { if (res.code === 200) { ElMessage.success('拒绝审批完成') } else { ElMessage.error(`拒绝审批失败:${res.message}`) } // 关闭弹窗 apprDial.value.handleClose() flowButtsVisable.value = false }) } const getLabCodeDict = async () => { // 先从缓存中获取 if (sessionStorage.getItem('bizLabCode') === null || sessionStorage.getItem('bizLabCode') === undefined) { // 缓存中没有则调用接口查询 await getDictByCode('bizLabCode').then((res) => { if (res.code === 200) { labCodeDict.value = res.data } }) } else { labCodeDict.value = JSON.parse(sessionStorage.getItem('bizLabCode')!) } } const getGroupCodeDict = async () => { // 先从缓存中获取 if (sessionStorage.getItem('bizGroupCode') === null || sessionStorage.getItem('bizLabbizGroupCodeCode') === undefined) { // 缓存中没有则调用接口查询 await getDictByCode('bizGroupCode').then((res) => { if (res.code === 200) { groupCodeDict.value = res.data } }) } else { groupCodeDict.value = JSON.parse(sessionStorage.getItem('bizGroupCode')!) } } const initDict = async () => { await getLabCodeDict() await getGroupCodeDict() } const initDialog = (params: any) => { // 从路由中获取参数 type.value = params.type id.value = params.id !== undefined ? params.id : '' status.value = params.status !== undefined ? params.status : '' // 默认显示第一个tab内容 current.value = radioItems.value[0].value currentLabel.value = radioItems.value[0].name switch (params.type) { case 'create' : title.value = '文件发放通知单(新增)' saveButtVisable.value = true submitButtVisable.value = true grantNoticeForm.value.createUserId = userInfo.id grantNoticeForm.value.createUserName = userInfo.name grantNoticeForm.value.createTime = dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss') keyFieldsDisable.value = false break case 'update': title.value = '文件发放通知单(编辑)' detailById(id.value) // 判断显示哪些流程操作按钮 showOperationButtonByStatus() keyFieldsDisable.value = true break case 'detail': title.value = '文件发放通知单' id.value = params.id detailById(id.value) // 查看详情时所有的操作按钮都隐藏 showOperationButtonByStatus() keyFieldsDisable.value = true break default: title.value = '' keyFieldsDisable.value = true break } } onMounted(() => { initDict() initDialog(route.query) }) </script> <template> <app-container> <el-form ref="grantNoticeRef" :model="grantNoticeForm" :rules="grantNoticeRules" label-position="right" label-width="110px" border stripe> <detail-page :title="`${title}`"> <template #btns> <el-button v-if="editButtVisable" type="primary" @click="editClickedHandler()"> 编辑 </el-button> <template v-if="flowButtsVisable"> <el-button type="primary" @click="approvalAgreeHandler"> 同意 </el-button> <el-button type="danger" @click="approvalRefuseHandler"> 拒绝 </el-button> </template> <el-button v-if="submitButtVisable" :disabled="id === ''" type="primary" @click="submitButtonHandler"> 提交 </el-button> <el-button v-if="saveButtVisable" type="primary" @click="saveButtonHandler"> 保存 </el-button> <el-button v-if="deleteButtVisable" type="danger" @click="deleteClickedHandler"> 删除 </el-button> <el-button v-if="cancelButtVisable" type="info" @click="revokeClickedHandler"> 取消 </el-button> <el-button type="info" @click="resetForm()"> 关闭 </el-button> </template> <el-radio-group v-model="currentLabel" style="margin-bottom: 20px;" @change="radioChangeHandler"> <el-radio-button v-for="item in radioItems" :key="item.value" :label="item.name" :disabled="id === ''" /> </el-radio-group> <template v-if="current === 'notice-basic'"> <el-row :gutter="24"> <!-- 第一行 第一列 --> <el-col :span="6"> <el-form-item label="实验室代码" prop="labCode"> <el-select v-model="grantNoticeForm.labCode" placeholder="请选择实验室代码" :disabled="keyFieldsDisable" style="width: 100%;"> <el-option v-for="dict in labCodeDict" :key="dict.id" :label="dict.name" :value="dict.value" /> </el-select> </el-form-item> <el-form-item label="创建人" prop="createUserName"> <el-input v-model="grantNoticeForm.createUserName" :disabled="true" /> <el-input v-model="grantNoticeForm.createUserId" type="hidden" /> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="组别代码" prop="groupCode"> <el-select v-model="grantNoticeForm.groupCode" placeholder="请选择组别代码" :disabled="keyFieldsDisable" style="width: 100%;"> <el-option v-for="dict in groupCodeDict" :key="dict.id" :label="dict.name" :value="dict.value" /> </el-select> </el-form-item> <el-form-item label="创建时间"> <el-input v-model="grantNoticeForm.createTime" :disabled="true" /> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="通知单编号"> <el-input v-model="grantNoticeForm.formNo" placeholder="通知单编号,保存后自动生成" :disabled="true" /> </el-form-item> </el-col> <el-col :span="6"> <el-form-item label="通知单名称"> <el-input v-model="grantNoticeForm.formName" :disabled="true" /> </el-form-item> </el-col> </el-row> </template> </detail-page> <template v-if="current === 'notice-basic'"> <table-container title="文件列表"> <template v-if="type !== 'detail'" #btns-right> <el-button type="primary" @click="addEditableRow"> 增加行 </el-button> <el-button type="info" @click="delFileRecords"> 删除行 </el-button> </template> <!-- 表格区域 --> <normal-table :data="grantNoticeForm.fileList" :columns="fileColumns" :pagination="false" :is-showmulti-select="type !== 'detail'" @multi-select="fileMultiSelect" > <template #preColumns> <el-table-column label="序号" width="55" align="center"> <template #default="scope"> {{ scope.$index + 1 }} </template> </el-table-column> </template> </normal-table> </table-container> </template> </el-form> <approval-dialog ref="apprDial" @on-success="approvalSuccessHandler" @on-refuse="refuseHandler" @on-revoke="revokeHandler" /> <file-select-dialog ref="refFileSelect" @record-selected="appendFileToList" /> <template v-if="current === 'notice-approval' && status !== '1'"> <approval-record-table :process-id="grantNoticeForm.processId" /> </template> </app-container> </template>