@@ -176,6 +187,7 @@
isDisplay: false,
fullCheckbox: false,
resultData: {},
+ comment: '',
language: '',
url: {
exportData: '/compare/sarFileCompareItemComment/exportResXls'
@@ -207,7 +219,8 @@
let query = {
selectIds: checkboxList.join(','),
includeComments: fullCheckbox,
- infoId: this.$route.query.id
+ infoId: this.$route.query.id,
+ comment: this.comment
}
downloadFile(this.url.exportData, this.resultData.serialNumberLeft + ' - ' + this.resultData.serialNumberRight + this.$t('comparisonResults') + '.xls', query, this.Deselect)
},
@@ -217,10 +230,19 @@
this.indeterminate = false
this.checkAll = false
},
+ viewConsistentAssessmentClick() {
+ this.comment = '一致'
+ this.getData()
+ },
+ viewAllClick() {
+ this.comment = ''
+ this.getData()
+ },
getData() {
let query = {
id: this.$route.query.id,
- infoId: this.$route.query.id
+ infoId: this.$route.query.id,
+ comment: this.comment
}
this.loading = true
getAction('/compare/sarFileCompareItemComment/queryCompareResult', query).then((res) => {
@@ -536,7 +558,7 @@
.detail-content-content-text-color {
border: 1px solid #00B3BE;
- background: rgba(0,179,190,0.0300);
+ background: rgba(0, 179, 190, 0.0300);
}
.detail-content-left {
@@ -577,9 +599,11 @@
border-radius: 4px;
float: left;
}
- .detail-content-bottom-color{
- background: rgba(0,179,190,0.0300);
+
+ .detail-content-bottom-color {
+ background: rgba(0, 179, 190, 0.0300);
}
+
.detail-content-bottom-left {
width: 115px;
font-size: 14px;
From f0d8fd0e59d409346cd228e3c4b6605f6af1f9f6 Mon Sep 17 00:00:00 2001
From: CD <1103614279@qq.com>
Date: Wed, 28 Sep 2022 17:05:25 +0800
Subject: [PATCH 04/10] =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=8A=A0=E6=90=9C?=
=?UTF-8?q?=E7=B4=A2=E6=9D=A1=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../controller/SarFileCompareItemCommentController.java | 5 +++--
.../compare/service/ISarFileCompareItemCommentService.java | 2 +-
.../service/impl/SarFileCompareItemCommentServiceImpl.java | 5 ++++-
3 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/compare/controller/SarFileCompareItemCommentController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/compare/controller/SarFileCompareItemCommentController.java
index eea6df830..f1cebbb13 100644
--- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/compare/controller/SarFileCompareItemCommentController.java
+++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/compare/controller/SarFileCompareItemCommentController.java
@@ -179,8 +179,9 @@ public class SarFileCompareItemCommentController extends JeroController list = null;
if (includeComments && StringUtils.isEmpty(selectIds)) {
//只导出全文评论的情况
@@ -198,6 +198,9 @@ public class SarFileCompareItemCommentServiceImpl extends ServiceImpl
Date: Wed, 28 Sep 2022 17:08:53 +0800
Subject: [PATCH 05/10] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=89=E6=9C=9F?=
=?UTF-8?q?=E4=BC=98=E5=8C=96=E7=82=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/countryCardView.vue | 32 +++++++++++++++++--
1 file changed, 29 insertions(+), 3 deletions(-)
diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue
index dbf4c5fd1..703474c0d 100644
--- a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue
+++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue
@@ -52,10 +52,14 @@
-
- {{$t('viewFile')}}
+
+
+
+
+
+ {{$t('viewFile')}}
+
\ No newline at end of file
From e0b606e943db31fabf9bf85043484dcb7f3b7fab Mon Sep 17 00:00:00 2001
From: zhn <947514737@qq.com>
Date: Wed, 28 Sep 2022 17:24:15 +0800
Subject: [PATCH 06/10] =?UTF-8?q?=E6=9C=88=E6=8A=A5=E5=AF=BC=E5=87=BA--?=
=?UTF-8?q?=E8=A1=8C=E9=97=B4=E8=B7=9D(=E6=B3=A8=E9=87=8A=E6=8E=89)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../LawsMonthlyReportWriteEOServiceImpl.java | 60 ++++++++++++-------
.../jero/modules/report/util/WordUtil.java | 18 +++++-
2 files changed, 55 insertions(+), 23 deletions(-)
diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/report/service/impl/LawsMonthlyReportWriteEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/report/service/impl/LawsMonthlyReportWriteEOServiceImpl.java
index 789ae882b..fa42b801f 100644
--- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/report/service/impl/LawsMonthlyReportWriteEOServiceImpl.java
+++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/report/service/impl/LawsMonthlyReportWriteEOServiceImpl.java
@@ -648,7 +648,7 @@ public class LawsMonthlyReportWriteEOServiceImpl extends ServiceImpl lawsMonthlyReportWriteEOS,
+ private void coverCn(List lawsMonthlyReportWriteEOS,
String titleCN,
XWPFDocument document) {
+ //封面标识
+ String flag = "cover";
String moth = lawsMonthlyReportWriteEOS.get(0).getMonth().replaceAll("-", "年") + "月";
titleCN = "\r\n\r\n" + titleCN + "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n";
WordUtil.exportWord(document, titleCN, null, ParagraphAlignment.CENTER, 0, 18,
- false, false, "Blue Sky Noto Regular",null,null);
- WordUtil.exportWord(document, moth, null, ParagraphAlignment.CENTER, 0, 12,
- false, true, "Blue Sky Noto Regular",null,null);
+ false, false, "Blue Sky Noto Regular",null,null,flag);
+ WordUtil.exportWord(document, moth+"\r\n", null, ParagraphAlignment.CENTER, 0, 12,
+ false, true, "Blue Sky Noto Regular",null,null,flag);
+ }
+ //封面
+ private void coverEn(List lawsMonthlyReportWriteEOS,
+ String titleCN,
+ XWPFDocument document) {
+ //封面标识
+ String flag = "cover";
+ String moth = lawsMonthlyReportWriteEOS.get(0).getMonth().replaceAll("-", "年") + "月";
+
+ titleCN = "\r\n\r\n" + titleCN + "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n";
+ WordUtil.exportWord(document, titleCN, null, ParagraphAlignment.CENTER, 0, 18,
+ false, false, "Blue Sky Noto Regular",null,null,flag);
+ WordUtil.exportWord(document, moth+"\r\n", null, ParagraphAlignment.CENTER, 0, 12,
+ false, true, "Blue Sky Noto Regular",null,null,flag);
}
private void wordContent(List lawsMonthlyReportWriteEOS,
List lawsMonthlyReportTitleTemplateEOS,
@@ -904,8 +920,8 @@ public class LawsMonthlyReportWriteEOServiceImpl extends ServiceImpl新征求意见清单模板, 新发布标准清单模板
@@ -960,13 +976,13 @@ public class LawsMonthlyReportWriteEOServiceImpl extends ServiceImpl
Date: Wed, 28 Sep 2022 17:29:03 +0800
Subject: [PATCH 07/10] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=89=E6=9C=9F?=
=?UTF-8?q?=E4=BC=98=E5=8C=96=E7=82=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/modules/defaultTemplate.vue | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/jero-web/src/views/businessSupport/regulationReport/components/modules/defaultTemplate.vue b/jero-web/src/views/businessSupport/regulationReport/components/modules/defaultTemplate.vue
index d989005a2..9a91fe34f 100644
--- a/jero-web/src/views/businessSupport/regulationReport/components/modules/defaultTemplate.vue
+++ b/jero-web/src/views/businessSupport/regulationReport/components/modules/defaultTemplate.vue
@@ -107,7 +107,7 @@
{{$t('status')}}
-
+
{{$t('usage')}}