From 33638cde5bf8a13fce5ff1313667378b4e7245b1 Mon Sep 17 00:00:00 2001 From: xzt <1113240624@qq.com> Date: Wed, 22 Nov 2023 17:51:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/build/projectInfo.js | 10 + .../src/views/building/contract/index.vue | 15 +- .../contract/options/acceptancePage.vue | 527 ++++++++++++++- .../building/contract/options/alterPage.vue | 603 +++++++++++++++++- .../building/contract/options/basePage.vue | 26 +- .../contract/options/evaluatePage.vue | 565 +++++++++++++++- .../building/contract/options/examinePage.vue | 563 +++++++++++++++- .../options/honourAnAgreementPage.vue | 543 +++++++++++++++- .../contract/options/subcontractPage.vue | 276 +++++--- .../src/views/building/firmInfo/index.vue | 4 +- .../src/views/building/projectInfo/index.vue | 4 +- .../src/views/system/menu/index.vue | 205 ++++-- .../src/main/resources/application-test.yml | 4 +- .../build/domain/BsSgcJsjdBuiConteval.java | 2 +- 14 files changed, 3201 insertions(+), 146 deletions(-) diff --git a/jwtech-admin-page/src/api/build/projectInfo.js b/jwtech-admin-page/src/api/build/projectInfo.js index ba60e9b8..aab057de 100644 --- a/jwtech-admin-page/src/api/build/projectInfo.js +++ b/jwtech-admin-page/src/api/build/projectInfo.js @@ -1,5 +1,15 @@ import request from '@/utils/request' + +// 新增项目基本信息时,所能选择的项目 +// export function getProposal() { +// return request({ +// url: '/build/projectInfo/getProposal', +// method: 'get', +// // data: query +// }) +// } + // 查询项目基本信息管理列表 export function listInfo(query) { return request({ diff --git a/jwtech-admin-page/src/views/building/contract/index.vue b/jwtech-admin-page/src/views/building/contract/index.vue index 16abf3c3..c17a3978 100644 --- a/jwtech-admin-page/src/views/building/contract/index.vue +++ b/jwtech-admin-page/src/views/building/contract/index.vue @@ -218,8 +218,12 @@ min-width="120" > { this.infoList = response.records; + // console.log( + // " this.infoList", + // JSON.parse(this.infoList[0].contractFile) + // ); this.total = response.total; this.loading = false; }); diff --git a/jwtech-admin-page/src/views/building/contract/options/acceptancePage.vue b/jwtech-admin-page/src/views/building/contract/options/acceptancePage.vue index d8855569..f51bb05d 100644 --- a/jwtech-admin-page/src/views/building/contract/options/acceptancePage.vue +++ b/jwtech-admin-page/src/views/building/contract/options/acceptancePage.vue @@ -1,3 +1,528 @@ + + + + diff --git a/jwtech-admin-page/src/views/building/contract/options/alterPage.vue b/jwtech-admin-page/src/views/building/contract/options/alterPage.vue index c9d25a5c..d318c4fc 100644 --- a/jwtech-admin-page/src/views/building/contract/options/alterPage.vue +++ b/jwtech-admin-page/src/views/building/contract/options/alterPage.vue @@ -1,3 +1,604 @@ + + + diff --git a/jwtech-admin-page/src/views/building/contract/options/basePage.vue b/jwtech-admin-page/src/views/building/contract/options/basePage.vue index 9b569400..b5d09d45 100644 --- a/jwtech-admin-page/src/views/building/contract/options/basePage.vue +++ b/jwtech-admin-page/src/views/building/contract/options/basePage.vue @@ -1,7 +1,13 @@ + + diff --git a/jwtech-admin-page/src/views/building/contract/options/examinePage.vue b/jwtech-admin-page/src/views/building/contract/options/examinePage.vue index 5a229e46..39e3bc13 100644 --- a/jwtech-admin-page/src/views/building/contract/options/examinePage.vue +++ b/jwtech-admin-page/src/views/building/contract/options/examinePage.vue @@ -1,3 +1,564 @@ + + + diff --git a/jwtech-admin-page/src/views/building/contract/options/honourAnAgreementPage.vue b/jwtech-admin-page/src/views/building/contract/options/honourAnAgreementPage.vue index 9bce430c..19f9e18c 100644 --- a/jwtech-admin-page/src/views/building/contract/options/honourAnAgreementPage.vue +++ b/jwtech-admin-page/src/views/building/contract/options/honourAnAgreementPage.vue @@ -1,3 +1,544 @@ + + diff --git a/jwtech-admin-page/src/views/building/contract/options/subcontractPage.vue b/jwtech-admin-page/src/views/building/contract/options/subcontractPage.vue index 7388492d..105bff81 100644 --- a/jwtech-admin-page/src/views/building/contract/options/subcontractPage.vue +++ b/jwtech-admin-page/src/views/building/contract/options/subcontractPage.vue @@ -118,7 +118,7 @@ min-width="120" /> @@ -306,8 +382,10 @@ export default { subcontractsList: [], // 弹出层标题 title: "", + viewTitle: "", // 是否显示弹出层 open: false, + viewOpen: false, // 查询参数 queryParams: { pageNum: 1, @@ -341,6 +419,7 @@ export default { form: {}, // 表单校验 rules: {}, + subMsg: {}, }; }, created() { @@ -458,6 +537,20 @@ export default { this.title = "修改分包合同"; }); }, + + // 查看信息 + viewInfo(row) { + this.viewTitle = row.subcontractName; + this.subMsg = row; + console.log("subMsg", row); + this.viewOpen = true; + }, + + // 关闭弹窗 + closeView() { + this.proMsg = {}; + }, + /** 提交按钮 */ submitForm() { this.$refs["form"].validate((valid) => { @@ -507,3 +600,38 @@ export default { }, }; + diff --git a/jwtech-admin-page/src/views/building/firmInfo/index.vue b/jwtech-admin-page/src/views/building/firmInfo/index.vue index 3c41c324..59511cb7 100644 --- a/jwtech-admin-page/src/views/building/firmInfo/index.vue +++ b/jwtech-admin-page/src/views/building/firmInfo/index.vue @@ -486,8 +486,8 @@ append-to-body @close="closeView" > - -
资格预审公告信息
+ +
企业信息
- -
资格预审公告信息
+ +
在建项目基本信息
- + - + - 搜索 - 重置 + 搜索 + 重置 @@ -34,54 +52,88 @@ size="mini" @click="handleAdd" v-hasPermi="['system:menu:add']" - >新增 + >新增 - + - + - - - - + + + + - + @@ -119,15 +171,23 @@ @show="$refs['iconSelect'].reset()" > - + + - @@ -139,7 +199,11 @@ - + @@ -151,7 +215,11 @@ - + @@ -162,7 +230,11 @@ - + @@ -172,7 +244,8 @@ v-for="dict in visibleOptions" :key="dict.dictValue" :label="dict.dictValue" - >{{dict.dictLabel}} + >{{ dict.dictLabel }} @@ -183,7 +256,8 @@ v-for="dict in statusOptions" :key="dict.dictValue" :label="dict.dictValue" - >{{dict.dictLabel}} + >{{ dict.dictLabel }} @@ -198,7 +272,13 @@ diff --git a/jwtech-admin/src/main/resources/application-test.yml b/jwtech-admin/src/main/resources/application-test.yml index e4667a96..c74a690a 100644 --- a/jwtech-admin/src/main/resources/application-test.yml +++ b/jwtech-admin/src/main/resources/application-test.yml @@ -130,8 +130,8 @@ spring: # redis 配置 redis: # 地址 - host: 127.0.0.1 -# host: 192.168.2.189 + #host: 127.0.0.1 + host: 192.168.2.189 # cluster: # nodes: 192.168.1.20:7001,192.168.1.20:7002,192.168.1.20:7003,192.168.1.20:7004,192.168.1.20:7005,192.168.1.20:7006 # max-redirects: 3 diff --git a/jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiConteval.java b/jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiConteval.java index 2f2e6a6a..477eadec 100644 --- a/jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiConteval.java +++ b/jwtech-system/src/main/java/com/kms/build/domain/BsSgcJsjdBuiConteval.java @@ -16,7 +16,7 @@ import com.jianwei.common.core.domain.BaseEntity; * @author kms * @date 2023-10-20 */ -@TableName("bs_sgc_jsjd_bui_cont_ eval") +@TableName("bs_sgc_jsjd_bui_cont_eval") @Data @ApiModel("合同履约评价") public class BsSgcJsjdBuiConteval extends BaseEntity