From c74814bb37c66746aca229213a97073d3d480d12 Mon Sep 17 00:00:00 2001 From: wuxu <1159559925@qq.com> Date: Mon, 10 Mar 2025 21:50:55 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E8=B5=84=E9=87=91=E6=94=AF=E4=BB=98?= =?UTF-8?q?=EF=BC=8C=E6=96=B0=E5=A2=9E=E8=B5=84=E9=87=91=E7=94=A8=E9=80=94?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/2025-03-10 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 sql/2025-03-10 diff --git a/sql/2025-03-10 b/sql/2025-03-10 new file mode 100644 index 00000000..880dd2a3 --- /dev/null +++ b/sql/2025-03-10 @@ -0,0 +1,3 @@ +ALTER TABLE `bs_sgc_jsjd_bui_purpose_funds` +ADD COLUMN `type` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资金用途(水利基础建设资金、三防经费、移民经费)' ; + From 58aec98dbeb4e94283aab472cc00abef3721ec89 Mon Sep 17 00:00:00 2001 From: wuxu <1159559925@qq.com> Date: Mon, 10 Mar 2025 21:53:48 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E8=B5=84=E9=87=91=E6=8B=A8=E4=BB=98?= =?UTF-8?q?=E3=80=81=E4=B8=93=E9=A2=98=E7=AE=A1=E7=90=86=E3=80=81=E5=BC=80?= =?UTF-8?q?=E5=B7=A5=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../investment/options/purposeFunds.vue | 20 +++++++ .../options/startUpDocument.vue | 59 +++++++++++++++++++ .../project/special/options/documentPage.vue | 19 +++++- .../investment/options/purposeFunds.vue | 1 + .../domain/BsSgcJsjdBuiPurposeFunds.java | 3 + .../domain/BsSgcYxjdDynamicCredit.java | 2 +- 6 files changed, 101 insertions(+), 3 deletions(-) diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/investment/options/purposeFunds.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/investment/options/purposeFunds.vue index d88dfe07..d66cd081 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/investment/options/purposeFunds.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/investment/options/purposeFunds.vue @@ -469,6 +469,21 @@ placeholder="请输入项目法人经办人" /> + + + + + + + + + + @@ -546,6 +561,7 @@ export default { contractNumber: "", // 规划附件 projectFileList: [], + fundUseTypeOptions: [], // 请求头 headers: { jianwei: "jwtech " + getToken(), @@ -743,6 +759,10 @@ export default { created() { // this.subcontractsList = this.formData; this.getList(); + + this.getDicts("fund_use_type").then((response) => { + this.fundUseTypeOptions = response.data; + }); }, // 父组件 利用axios请求得到的值 传送到子组件,要监听,否则初始渲染时为空 // watch: { diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/preparationConstruction/options/startUpDocument.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/preparationConstruction/options/startUpDocument.vue index eac6c0e7..2eec7484 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/preparationConstruction/options/startUpDocument.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/preparationConstruction/options/startUpDocument.vue @@ -120,12 +120,14 @@ prop="sectionName" min-width="120" /> + +