From 4a068c737e2147b7c90115e196698dee8e13ea75 Mon Sep 17 00:00:00 2001
From: ye1023 <12588209+ye1023@user.noreply.gitee.com>
Date: Mon, 11 May 2026 14:38:29 +0800
Subject: [PATCH] =?UTF-8?q?yxk-20260509-=E5=85=9A=E5=A7=94=E4=BC=9A?=
=?UTF-8?q?=E5=8F=8D=E9=A6=88=E8=A1=A8=E5=8D=95=20=E6=96=B0=E5=A2=9E?=
=?UTF-8?q?=E6=97=B6=EF=BC=8C=E5=8F=AF=E4=B8=8A=E4=BC=A0=E9=99=84=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.env | 2 +-
.../components/BgPartymatterBPMForm.vue | 42 ++++++++++++++++++-
2 files changed, 41 insertions(+), 3 deletions(-)
diff --git a/.env b/.env
index 621a5f9..7d2b9d0 100644
--- a/.env
+++ b/.env
@@ -2,7 +2,7 @@
VITE_PORT = 3100
# 网站标题
-VITE_GLOB_APP_TITLE = JeecgBoot 企业级低代码平台
+VITE_GLOB_APP_TITLE = 事项督办系统
# 简称,此变量只能是字符/下划线
VITE_GLOB_APP_SHORT_NAME = JeecgBoot_Pro
diff --git a/src/views/bg/bgpartymatter/components/BgPartymatterBPMForm.vue b/src/views/bg/bgpartymatter/components/BgPartymatterBPMForm.vue
index 7744f18..e83f427 100644
--- a/src/views/bg/bgpartymatter/components/BgPartymatterBPMForm.vue
+++ b/src/views/bg/bgpartymatter/components/BgPartymatterBPMForm.vue
@@ -100,8 +100,21 @@
:columns="feedbackColumns"
:data-source="feedbackList"
:pagination="false"
- :scroll="{ x: 900 }"
- />
+ :scroll="{ x: 1220 }"
+ >
+
+
+
+ -
+
+
+
@@ -149,6 +162,7 @@
import TaskHandleInnerContent from '/@/views/super/bpm/process/personalOffice/myHandleTask/content/TaskHandleInnerContent.vue';
import JDictSelectTag from "../../../../components/Form/src/jeecg/components/JDictSelectTag.vue";
import BgPartymatterBPMFeedbackModal from './BgPartymatterBPMFeedbackModal.vue';
+ import SUploadFile from '/@/components/semri/fileComponent/SUploadFile.vue';
const { isDisabledAuth, hasPermission, initBpmFormData} = usePermission();
const props = defineProps({
@@ -210,6 +224,7 @@
{ title: '实际执行情况', dataIndex: 'actualExect', align: 'left', width: 280 },
{ title: '实际完成时间', dataIndex: 'actualTime', align: 'center', width: 180 },
{ title: '完成状态', dataIndex: 'bpmStatus', align: 'center', width: 120 },
+ { title: '附件', dataIndex: 'id', key: 'attachments', align: 'left', width: 340 },
];
const mainDisabled = computed(() => props.formDisabled);
@@ -425,4 +440,27 @@
gap: 12px;
margin-top: 1px;
}
+
+ .feedback-attachment-list {
+ min-width: 300px;
+
+ :deep(.file-list-wrapper) {
+ min-height: auto;
+ padding: 8px;
+ }
+
+ :deep(.file-list-header) {
+ margin-bottom: 6px;
+ padding-bottom: 6px;
+ }
+
+ :deep(.file-list .file-item) {
+ padding: 8px;
+ margin-bottom: 6px;
+ }
+
+ :deep(.ant-empty) {
+ margin: 0;
+ }
+ }