更新采购申请

This commit is contained in:
吴红兵
2026-03-01 21:55:33 +08:00
parent f2df01c38e
commit 992e9f5a3e
14 changed files with 837 additions and 948 deletions

View File

@@ -292,8 +292,8 @@
<!-- 实施采购iframe 嵌入 implement.vue供列表与流程页面使用 -->
<ImplementForm ref="implementFormRef" @refresh="getDataList" />
<!-- 采购文件审核弹窗 -->
<DocAuditDialog ref="docAuditDialogRef" @refresh="getDataList" />
<!-- 招标文件审核弹窗 -->
<!-- <DocAuditDialog ref="docAuditDialogRef" @refresh="getDataList" />-->
<!-- 采购代表弹窗 -->
<el-dialog
@@ -365,7 +365,7 @@ const ImplementForm = defineAsyncComponent(() => import('./implementForm.vue'));
const ActionDropdown = defineAsyncComponent(() => import('/@/components/tools/action-dropdown.vue'));
const PurchasingAcceptModal = defineAsyncComponent(() => import('./accept/PurchasingAcceptModal.vue'));
const FlowCommentTimeline = defineAsyncComponent(() => import('/@/views/jsonflow/comment/timeline.vue'));
const DocAuditDialog = defineAsyncComponent(() => import('./docAudit/DocAuditDialog.vue'));
// const DocAuditDialog = defineAsyncComponent(() => import('./docAudit/DocAuditDialog.vue'));
// 字典数据和品目树数据
const dictData = ref({
@@ -537,7 +537,7 @@ const handleImplement = (row: any) => {
implementFormRef.value?.openDialog(row);
};
/** 打开采购文件审核 */
/** 打开招标文件审核 */
const handleDocAudit = (row: any) => {
docAuditDialogRef.value?.open(row);
};
@@ -639,7 +639,7 @@ const getActionMenuItems = (row: any) => {
// },
// {
// command: 'docAudit',
// label: '采购文件审核',
// label: '招标文件审核',
// icon: DocumentChecked,
// visible: () => row?.implementType === '2' && row?.agentId,
// },