From 2483249b35861fc25a5558c37ad3bab662ddae9a Mon Sep 17 00:00:00 2001 From: xzt <1113240624@qq.com> Date: Tue, 14 May 2024 15:27:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/map/index.vue | 23 + .../src/components/securityDeposit/index.vue | 958 ++++++++++++++ .../src/views/building/projectInfo/index.vue | 129 +- .../projectInfo/projectProcess/baseMsg.vue | 171 ++- .../projectProcess/contract/index.vue | 2 +- .../designChangeInformation.vue | 12 +- .../projectInfo/projectProcess/firmInfo.vue | 36 +- .../projectInfo/projectProcess/index.vue | 8 +- .../peasantWorkerSystem/index.vue | 18 +- .../projectLegalPersonEvaluation.vue | 10 +- .../options/components/divAssess.vue | 44 +- .../options/components/viewReport.vue | 4 +- .../components/itemDivisionManage.vue | 4 +- .../components/segmentProject.vue | 91 +- .../itemDivision/components/unitProject.vue | 8 +- .../options/annualPlanManagement.vue | 2 + .../options/completionOfInvestment.vue | 183 +-- .../options/progressFilling.vue | 173 +-- .../floodControlInspection/editPart.vue | 544 ++++++++ .../floodControlInspection/index.vue | 857 +++++++++++++ .../responsibleUnit.vue | 582 +++++++++ .../performanceInspection/editPart.vue | 544 ++++++++ .../performanceInspection/index.vue | 857 +++++++++++++ .../performanceInspection/responsibleUnit.vue | 582 +++++++++ .../qualityInspection/editPart.vue | 544 ++++++++ .../qualityInspection/index.vue | 857 +++++++++++++ .../qualityInspection/responsibleUnit.vue | 582 +++++++++ .../specialInspection/editPart.vue | 544 ++++++++ .../specialInspection/index.vue | 857 +++++++++++++ .../specialInspection/responsibleUnit.vue | 582 +++++++++ .../options/basePage.vue | 20 +- .../enterpriseInformation/options/index.vue | 2 +- .../project/bid/options/investmentMargin.vue | 1109 +---------------- .../src/views/project/report/index.vue | 11 +- .../project/special/options/basePage.vue | 2 +- 35 files changed, 9600 insertions(+), 1352 deletions(-) create mode 100644 jwtech-admin-page/src/components/securityDeposit/index.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/editPart.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/index.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/responsibleUnit.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/editPart.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/index.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/responsibleUnit.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/editPart.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/index.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/responsibleUnit.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/editPart.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/index.vue create mode 100644 jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/responsibleUnit.vue diff --git a/jwtech-admin-page/src/components/map/index.vue b/jwtech-admin-page/src/components/map/index.vue index 4db812d6..34d911ba 100644 --- a/jwtech-admin-page/src/components/map/index.vue +++ b/jwtech-admin-page/src/components/map/index.vue @@ -491,6 +491,29 @@ export default { that.zoom = that.map.getView().getZoom(); console.log("zomm", that.zoom); }); + // 鼠标移入元素样式 + this.map.on("pointermove", (e) => { + let pixel = this.map.getEventPixel(e.originalEvent); + let feature = this.map.forEachFeatureAtPixel(pixel, (feature) => { + return feature; + }); + + if (feature != undefined) { + this.map.getTargetElement().style.cursor = "pointer"; + } else { + this.map.getTargetElement().style.cursor = "auto"; + } + + // 线、面要素不做鼠标移入样式修改 + // if ( + // feature == undefined || + // feature.getGeometry().getType() != "Point" + // ) { + // this.map.getTargetElement().style.cursor = "auto"; + // } else { + // this.map.getTargetElement().style.cursor = "pointer"; + // } + }); // 回显 this.handleReturnShow(); diff --git a/jwtech-admin-page/src/components/securityDeposit/index.vue b/jwtech-admin-page/src/components/securityDeposit/index.vue new file mode 100644 index 00000000..1fff33d9 --- /dev/null +++ b/jwtech-admin-page/src/components/securityDeposit/index.vue @@ -0,0 +1,958 @@ + + + + diff --git a/jwtech-admin-page/src/views/building/projectInfo/index.vue b/jwtech-admin-page/src/views/building/projectInfo/index.vue index 98f4246a..7241a8dc 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/index.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/index.vue @@ -378,7 +378,7 @@ - + 标绘 - + + + + + + - + - + + + + + + + + + + + @@ -1198,6 +1228,64 @@ export default { }, { max: 250, message: "字符长度最大为250", trigger: "blur" }, ], + projectLegalPhone: [ + { + required: true, + message: "请输入单位负责人电话", + trigger: "blur", + }, + { + type: "string", + pattern: + /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/, + message: "请输入正确的手机号", + trigger: "blur", + }, + ], + projectSuperintendent: [ + { + required: true, + message: "请输入项目负责人", + trigger: "blur", + }, + { max: 250, message: "字符长度最大为250", trigger: "blur" }, + ], + projectSuperintendentPhone: [ + { + required: true, + message: "请输入项目负责人电话", + trigger: "blur", + }, + { + type: "string", + pattern: + /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/, + message: "请输入正确的手机号", + trigger: "blur", + }, + ], + projectUnitLegal: [ + { + required: true, + message: "请输入单位法定代表人", + trigger: "blur", + }, + { max: 250, message: "字符长度最大为250", trigger: "blur" }, + ], + projectUnitLegalPhone: [ + { + required: true, + message: "请输入单位法定代表人电话", + trigger: "blur", + }, + { + type: "string", + pattern: + /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/, + message: "请输入正确的手机号", + trigger: "blur", + }, + ], constructionAddress: [ { required: true, @@ -1232,16 +1320,7 @@ export default { fundingNumber: [ { max: 250, message: "字符长度最大为250", trigger: "blur" }, ], - projectLegalPhone: [ - { - required: true, - type: "string", - pattern: - /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/, - message: "请输入正确的手机号", - trigger: "blur", - }, - ], + centralArrangedFunds: [ { required: true, @@ -1615,6 +1694,12 @@ export default { projectLegalPerson: null, projectLegalUnit: null, projectLegalPhone: null, + + projectSuperintendent: null, + projectSuperintendentPhone: null, + projectUnitLegal: null, + projectUnitLegalPhone: null, + engineeringGrade: null, engineeringPurposes: null, workCategory: null, @@ -1668,6 +1753,12 @@ export default { projectLegalPerson: null, projectLegalUnit: null, projectLegalPhone: null, + + projectSuperintendent: null, + projectSuperintendentPhone: null, + projectUnitLegal: null, + projectUnitL: null, + engineeringGrade: null, engineeringPurposes: null, workCategory: null, diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/baseMsg.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/baseMsg.vue index 87f29b4f..e4567948 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/baseMsg.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/baseMsg.vue @@ -23,25 +23,45 @@ {{ this.proMsg.projectName + "[" + this.proMsg.proCode + "]" }} - - - {{ this.proMsg.projectLegalPerson }} - + {{ this.proMsg.proCode }} - + 标绘 + + + {{ this.proMsg.projectLegalPerson }} + {{ this.proMsg.projectLegalPhone }} + + + + {{ this.proMsg.projectSuperintendent }} + + + + {{ this.proMsg.projectSuperintendentPhone }} + + + + + {{ this.proMsg.projectUnitLegal }} + + + + {{ this.proMsg.projectUnitLegalPhone }} + + {{ projectTypeFormat(this.proMsg) }} @@ -165,6 +185,7 @@ width="1200px" append-to-body :close-on-click-modal="false" + @close="close" > - + + - + - - + + + + + + + + - + + + + + + + + + + + @@ -926,6 +981,64 @@ export default { }, { max: 250, message: "字符长度最大为250", trigger: "blur" }, ], + projectLegalPhone: [ + { + required: true, + message: "请输入单位负责人电话", + trigger: "blur", + }, + { + type: "string", + pattern: + /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/, + message: "请输入正确的手机号", + trigger: "blur", + }, + ], + projectSuperintendent: [ + { + required: true, + message: "请输入项目负责人", + trigger: "blur", + }, + { max: 250, message: "字符长度最大为250", trigger: "blur" }, + ], + projectSuperintendentPhone: [ + { + required: true, + message: "请输入项目负责人电话", + trigger: "blur", + }, + { + type: "string", + pattern: + /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/, + message: "请输入正确的手机号", + trigger: "blur", + }, + ], + projectUnitLegal: [ + { + required: true, + message: "请输入单位法定代表人", + trigger: "blur", + }, + { max: 250, message: "字符长度最大为250", trigger: "blur" }, + ], + projectUnitLegalPhone: [ + { + required: true, + message: "请输入单位法定代表人电话", + trigger: "blur", + }, + { + type: "string", + pattern: + /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/, + message: "请输入正确的手机号", + trigger: "blur", + }, + ], constructionAddress: [ { required: true, @@ -960,16 +1073,7 @@ export default { fundingNumber: [ { max: 250, message: "字符长度最大为250", trigger: "blur" }, ], - projectLegalPhone: [ - { - required: true, - type: "string", - pattern: - /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/, - message: "请输入正确的手机号", - trigger: "blur", - }, - ], + centralArrangedFunds: [ { required: true, @@ -1323,6 +1427,11 @@ export default { this.loading = false; }); }, + close() { + this.potMsg = []; + this.lineMsg = []; + this.allDrawMsg = []; + }, // 表单重置 reset() { this.form = { @@ -1333,6 +1442,12 @@ export default { projectLegalPerson: null, projectLegalUnit: null, projectLegalPhone: null, + + projectSuperintendent: null, + projectSuperintendentPhone: null, + projectUnitLegal: null, + projectUnitLegalPhone: null, + engineeringGrade: null, engineeringPurposes: null, workCategory: null, diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/contract/index.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/contract/index.vue index 46479fbd..8399c0d3 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/contract/index.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/contract/index.vue @@ -626,7 +626,7 @@ diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/designChangeInformation.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/designChangeInformation.vue index 76e50b49..acd5cb15 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/designChangeInformation.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/designChangeInformation.vue @@ -148,13 +148,13 @@ prop="changeApplicant" min-width="120" /> - + /> --> - + 变更申请人 {{ this.designMsg.changeApplicant }} - + {{ this.designMsg.approvalTime }} diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/firmInfo.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/firmInfo.vue index 7460412b..5766bd10 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/firmInfo.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/firmInfo.vue @@ -16,26 +16,52 @@ - + + + + + + + - + + + + + + + + + + + + diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/index.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/index.vue index 425c0bbc..d2ab603e 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/index.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/index.vue @@ -51,7 +51,7 @@ + + + + - - - + - + { @@ -668,7 +668,7 @@ export default { handleAdd() { this.reset(); this.open = true; - this.title = "添加项目法人评价"; + this.title = "添加项目法人履职评价"; }, /** 修改按钮操作 */ handleUpdate(row) { @@ -692,7 +692,7 @@ export default { ); this.totalScore = startScore; this.open = true; - this.title = "修改项目法人评价"; + this.title = "修改项目法人履职评价"; }); }, /** 提交按钮 */ diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/qualityControl/options/components/divAssess.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/qualityControl/options/components/divAssess.vue index b89e88c7..03ea3217 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/qualityControl/options/components/divAssess.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/qualityControl/options/components/divAssess.vue @@ -34,11 +34,23 @@ min-width="120" /> + + + - + + + @@ -378,8 +423,32 @@ export default { unitNumber: [ { required: true, message: "请输入单元工程数量", trigger: "blur" }, { - pattern: /^[1-9]\d*$/, - message: "请输入正整数,不包含0", + pattern: /^[0-9]\d*$/, + message: "请输入正整数", + trigger: "blur", + }, + ], + keyUnitProject: [ + { + required: true, + message: "请输入关键部分单元工程数量", + trigger: "blur", + }, + { + pattern: /^[0-9]\d*$/, + message: "请输入正整数", + trigger: "blur", + }, + ], + hiddenUnitProjects: [ + { + required: true, + message: "请输入重要隐藏单元工程数量", + trigger: "blur", + }, + { + pattern: /^[0-9]\d*$/, + message: "请输入正整数", trigger: "blur", }, ], diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/qualityControl/options/itemDivision/components/unitProject.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/qualityControl/options/itemDivision/components/unitProject.vue index 34899e39..8c254f5c 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/qualityControl/options/itemDivision/components/unitProject.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/qualityControl/options/itemDivision/components/unitProject.vue @@ -31,12 +31,8 @@
单位工程划分
- - + + diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/scheduleManagement/options/annualPlanManagement.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/scheduleManagement/options/annualPlanManagement.vue index 5a37b46f..685bf55e 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/scheduleManagement/options/annualPlanManagement.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/scheduleManagement/options/annualPlanManagement.vue @@ -738,6 +738,8 @@ export default { /** 查询进度计划列表 */ getList() { this.loading = true; + this.queryParams.data.proCode = this.proCode; + this.queryParams.data.proNo = this.proNo; listPlan(this.queryParams).then((response) => { this.planList = response.records; this.total = response.total; diff --git a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/scheduleManagement/options/completionOfInvestment.vue b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/scheduleManagement/options/completionOfInvestment.vue index f5fdc088..882db8c2 100644 --- a/jwtech-admin-page/src/views/building/projectInfo/projectProcess/scheduleManagement/options/completionOfInvestment.vue +++ b/jwtech-admin-page/src/views/building/projectInfo/projectProcess/scheduleManagement/options/completionOfInvestment.vue @@ -423,7 +423,8 @@ >
-
+ +
{{ detailMsg.stageTime }}
@@ -493,50 +494,69 @@
-
-
{{ detailMsg.stageTime }}
-
- 年度目标 - - {{ sumAmount(planDetailList[0], "p") }} - - 万元,已完成 - - {{ sumAmount(planDetailList[0], "v") }} - 万元,投资完成率 - - {{ - ( - (sumAmount(planDetailList[0], "v") / - sumAmount(planDetailList[0], "p")) * - 100 - ).toFixed(2) - }}% - -
-
- 形象面貌 -

- 形象进度描述: - {{ - detailMsg.descriptionProgress - ? detailMsg.descriptionProgress - : "-" - }} -

- + +
+ + +
+
{{ item.stageTime }}
+
+ 年度目标 + + {{ sumAmount(planDetailList[0], "p") }} + + 万元,已完成 + + {{ + sumAmount( + planDetailList[0], + "v", + new Date(item.stageTime).getMonth() + 1 + ) + }} + 万元,投资完成率 + + {{ + ( + (sumAmount( + planDetailList[0], + "v", + new Date(detailMsg.stageTime).getMonth() + 1 + ) / + sumAmount(planDetailList[0], "p")) * + 100 + ).toFixed(2) + }}% + +
+
+ 形象面貌 +

+ 形象进度描述: + {{ + item.descriptionProgress ? item.descriptionProgress : "-" + }} +

+ +
+
暂无数据~
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 点击上传 + +
+ 支持jpg/png/pdf/word/excel文件等,不超过200M +
+
+
+
+ + +
+
+ + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/index.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/index.vue new file mode 100644 index 00000000..4e7716f6 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/index.vue @@ -0,0 +1,857 @@ + + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/responsibleUnit.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/responsibleUnit.vue new file mode 100644 index 00000000..f06cba37 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/floodControlInspection/responsibleUnit.vue @@ -0,0 +1,582 @@ + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/editPart.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/editPart.vue new file mode 100644 index 00000000..f18f24c1 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/editPart.vue @@ -0,0 +1,544 @@ + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/index.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/index.vue new file mode 100644 index 00000000..18ba6c2c --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/index.vue @@ -0,0 +1,857 @@ + + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/responsibleUnit.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/responsibleUnit.vue new file mode 100644 index 00000000..f06cba37 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/performanceInspection/responsibleUnit.vue @@ -0,0 +1,582 @@ + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/editPart.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/editPart.vue new file mode 100644 index 00000000..f18f24c1 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/editPart.vue @@ -0,0 +1,544 @@ + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/index.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/index.vue new file mode 100644 index 00000000..f454be75 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/index.vue @@ -0,0 +1,857 @@ + + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/responsibleUnit.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/responsibleUnit.vue new file mode 100644 index 00000000..f06cba37 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/qualityInspection/responsibleUnit.vue @@ -0,0 +1,582 @@ + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/editPart.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/editPart.vue new file mode 100644 index 00000000..f18f24c1 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/editPart.vue @@ -0,0 +1,544 @@ + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/index.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/index.vue new file mode 100644 index 00000000..187e6ff4 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/index.vue @@ -0,0 +1,857 @@ + + + + + diff --git a/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/responsibleUnit.vue b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/responsibleUnit.vue new file mode 100644 index 00000000..f06cba37 --- /dev/null +++ b/jwtech-admin-page/src/views/evaluationEarlyWarning/supervisionInspection/specialInspection/responsibleUnit.vue @@ -0,0 +1,582 @@ + + + + diff --git a/jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/basePage.vue b/jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/basePage.vue index 7458a4f7..15ff7405 100644 --- a/jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/basePage.vue +++ b/jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/basePage.vue @@ -12,7 +12,7 @@ label-width="80px" label-position="top" > - + --> - - - - - - - - - + + + + + + + + + diff --git a/jwtech-admin-page/src/views/project/bid/options/investmentMargin.vue b/jwtech-admin-page/src/views/project/bid/options/investmentMargin.vue index 42bca84f..09bf6fb4 100644 --- a/jwtech-admin-page/src/views/project/bid/options/investmentMargin.vue +++ b/jwtech-admin-page/src/views/project/bid/options/investmentMargin.vue @@ -1,646 +1,17 @@ - diff --git a/jwtech-admin-page/src/views/project/report/index.vue b/jwtech-admin-page/src/views/project/report/index.vue index 2b88e98b..1c54c567 100644 --- a/jwtech-admin-page/src/views/project/report/index.vue +++ b/jwtech-admin-page/src/views/project/report/index.vue @@ -589,12 +589,11 @@ - {{ - this.reportMsg.projectName + - "[" + - this.reportMsg.projectCode + - "]" - }} + {{ this.reportMsg.projectName }} + + + + {{ this.reportMsg.projectCode }} diff --git a/jwtech-admin-page/src/views/project/special/options/basePage.vue b/jwtech-admin-page/src/views/project/special/options/basePage.vue index a1459e2c..f227b42d 100644 --- a/jwtech-admin-page/src/views/project/special/options/basePage.vue +++ b/jwtech-admin-page/src/views/project/special/options/basePage.vue @@ -21,7 +21,7 @@