From 83ba497d73e09bf1be2981a0165e7f5249d77538 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Sun, 9 Jun 2024 22:02:37 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E5=A4=8D=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=AE=9E=E6=96=BD=E4=B8=8A=E4=BC=A0=E8=B4=B9=E7=94=A8,?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E5=88=86=E6=91=8A=E5=8A=9F=E8=83=BD=E7=BB=86?= =?UTF-8?q?=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/steps/index.vue | 19 +++---- .../implementation/attachment.vue | 50 ++++++++++++++++- .../implementation/share.vue | 46 ++++++++++++++++ .../implementation/uploadFee.vue | 54 +++++++++++++++++-- 4 files changed, 152 insertions(+), 17 deletions(-) diff --git a/src/components/steps/index.vue b/src/components/steps/index.vue index f02c4a6..51723b1 100644 --- a/src/components/steps/index.vue +++ b/src/components/steps/index.vue @@ -92,13 +92,19 @@ const baseForm = ref() const schema = computed(() => { return [ + { + label: '征集名称', + prop: 'requirementName', + colProps: { + span: 12 + } + }, { label: '所属公司', prop: 'affiliatedCompany', colProps: { span: 12 } - // component: }, { label: '征集类型', @@ -106,7 +112,6 @@ const schema = computed(() => { colProps: { span: 12 } - // component: }, { label: '截止时间', @@ -114,16 +119,8 @@ const schema = computed(() => { colProps: { span: 12 } - // component: - }, - { - label: '需求名称', - prop: 'requirementName', - colProps: { - span: 12 - } - // component: }, + ] }) diff --git a/src/views/project-management/implementation/attachment.vue b/src/views/project-management/implementation/attachment.vue index 3d9f8d2..447fbf2 100644 --- a/src/views/project-management/implementation/attachment.vue +++ b/src/views/project-management/implementation/attachment.vue @@ -1,4 +1,6 @@