From e44a641af710c6697914e0c1c7b1f087ad4f4a25 Mon Sep 17 00:00:00 2001 From: yehuangf Date: Wed, 24 Dec 2025 09:15:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20[=E5=AF=B9=E6=A0=87=E6=8A=A5=E5=91=8A]?= =?UTF-8?q?=20=E5=AE=A1=E6=89=B9=E4=B8=AD=E5=92=8C=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E4=BF=AE=E6=94=B9=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../custom-page/report.vue | 82 ++++--------------- 1 file changed, 18 insertions(+), 64 deletions(-) diff --git a/src/custom/apaas-custom-mydemo/custom-page/report.vue b/src/custom/apaas-custom-mydemo/custom-page/report.vue index cc2ccce..38cd1e6 100644 --- a/src/custom/apaas-custom-mydemo/custom-page/report.vue +++ b/src/custom/apaas-custom-mydemo/custom-page/report.vue @@ -84,9 +84,7 @@
- - 新增 - + 新增
@@ -113,9 +111,7 @@ v-for="(colConfig, index) in tableConfig.colConfigs" v-slot:[colConfig.customHeadSlot]="{ column }" > -
- {{ column }} {{ colConfig }} -
+
{{ column }} {{ colConfig }}
@@ -359,12 +344,8 @@
@@ -378,18 +359,6 @@ @close="handleLaunchDialogClose" >
-
-
- 流程主题 * -
- -
-
审批环节 @@ -445,12 +414,8 @@
@@ -538,7 +503,6 @@ export default { currentEditRow: null, // 当前要修改的行数据 launchDialogVisible: false, // 发起弹窗显示状态 currentLaunchRow: null, // 当前要发起的行数据 - launchProcessTitle: '', launchWorkflowSteps: [ { name: '校对', @@ -753,7 +717,6 @@ export default { }, handleLaunch(row) { this.currentLaunchRow = row - this.launchProcessTitle = row.title || '' // 重置审批环节 this.launchWorkflowSteps = [ { @@ -783,7 +746,6 @@ export default { handleLaunchDialogClose() { this.launchDialogVisible = false this.currentLaunchRow = null - this.launchProcessTitle = '' // 重置审批环节 this.launchWorkflowSteps = [ { @@ -825,13 +787,6 @@ export default { return } - // 流程主题必填 - const processTitle = (this.launchProcessTitle || '').trim() - if (!processTitle) { - this.$message.warning('请填写流程主题') - return - } - const reportId = this.currentLaunchRow.reportId || this.currentLaunchRow.id if (!reportId) { this.$message.error('缺少报告ID') @@ -842,7 +797,6 @@ export default { const submitData = { reportId: reportId, userId: getUserId(), - processTitle: processTitle, proofreadUsers: this.launchWorkflowSteps[0].handlers, reviewUsers: this.launchWorkflowSteps[1].handlers, countersignUsers: [],