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: [],