@@ -128,14 +128,14 @@
loading: false,
fileList: [],
downLoadFileUrl: window._CONFIG['domianPreviewURL'] + '/sys/common/download',
- queryParamSeach: '',
mapOne: {},
mapTwo: {},
queryParamOne: {},
- searchQueryOne: {},
orderBy: '1',
orderByField: '',
- tagList: []
+ tagList: [],
+ selectValue: '',
+ selectValueTwo: ''
}
},
watch: {
@@ -180,86 +180,55 @@
}
},
pageOnChange(page, pageSize) {
- this.queryParam = { ...this.queryParamOne, ...this.searchQueryOne }
this.pageNo = page
- this.getParagraphInfoList(1)
+ this.getParagraphInfoList()
},
SizeChange(page, pageSize) {
- this.queryParam = { ...this.queryParamOne, ...this.searchQueryOne }
this.pageNo = 1
this.pageSize = pageSize
- this.getParagraphInfoList(1)
+ this.getParagraphInfoList()
},
searchReset() {
this.pageNo = 1
this.queryParamOne = {}
- this.queryParam = { ...this.queryParamOne, ...this.searchQueryOne }
- this.queryParamSeach = ''
- this.getParagraphInfoList(1)
+ this.getParagraphInfoList()
},
searchQuery() {
- this.ParamSeach()
- this.queryParam = { ...this.queryParamOne, ...this.searchQueryOne }
this.pageNo = 1
- this.getParagraphInfoList(1)
+ this.getParagraphInfoList()
},
- ParamSeach() {
- let queryParam = JSON.parse(JSON.stringify(this.searchQueryOne))
- if (queryParam[this.selectModel]) {
- this.queryParamSeach = this.selectModelName + ':' + queryParam[this.selectModel]
- } else {
- this.queryParamSeach = ''
- }
- },
- searchData(data) {
- this.queryParam = {}
- this.searchQueryOne = data || {}
- this.queryParam = { ...this.queryParamOne, ...data }
- this.ParamSeach()
+ searchData(value) {
+ this.queryParam.selectValue = value || undefined
+ this.queryParam.selectValueTwo = undefined
this.pageNo = 1
- this.getParagraphInfoList(1)
+ this.getParagraphInfoList()
},
- searchDataTwo(data) {
- this.queryParam = {}
- this.searchQueryOne = data || {}
- this.queryParam = { ...this.queryParamOne, ...data }
- this.ParamSeach()
+ searchDataTwo(value) {
+ this.queryParam.selectValueTwo = value
this.pageNo = 1
- this.getParagraphInfoList(2)
+ this.getParagraphInfoList()
},
ResetSearch() {
this.queryParam = {}
this.queryParamOne = {}
- this.searchQueryOne = {}
this.checkboxText = []
- this.selectedRowKeys = []
- this.ParamSeach()
this.pageNo = 1
- this.getParagraphInfoList(1)
+ this.getParagraphInfoList()
},
- getParagraphInfoList(num) {
- let queryParam = JSON.parse(JSON.stringify(this.queryParam))
+ getParagraphInfoList() {
+ let queryParamOne = Object.assign(this.queryParam, this.queryParamOne)
+ let queryParam = JSON.parse(JSON.stringify(queryParamOne))
Object.keys(queryParam).forEach(val => {
if (queryParam[val] instanceof Array) {
queryParam[val] = queryParam[val].join(',')
}
- if (val.includes('_name')) {
- delete queryParam[val]
- }
})
- this.mapTwo = {}
- if (num == 1) {
- this.mapOne = queryParam
- } else if (num == 2) {
- this.mapTwo = queryParam
- let checkboxText = JSON.parse(JSON.stringify(this.checkboxText))
- this.mapTwo.ids = checkboxText.join(',')
- }
+ let checkboxText = JSON.parse(JSON.stringify(this.checkboxText))
let query = {
pageNo: this.pageNo,
pageSize: this.pageSize,
- mapOne: this.mapOne,
- mapTwo: this.mapTwo
+ ids: checkboxText.join(','),
+ ...queryParam
}
this.loading = true
postAction(this.url.getParagraphInfoList, query).then((res) => {
From 406b73607592999bdc9ade1b40f41c92ed0de469 Mon Sep 17 00:00:00 2001
From: qq787203167 <787203167@qq.com>
Date: Fri, 19 Aug 2022 10:41:35 +0800
Subject: [PATCH 74/94] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93?=
=?UTF-8?q?=E5=B7=B2=E7=9F=A5bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
jero-web/src/common/lang/en-us.js | 2 +-
.../problemKnowledgeBase/components/countryCardView.vue | 1 +
.../components/problemKnowledgeBaseAdd.vue | 4 +++-
.../components/problemKnowledgeBaseRelease.vue | 1 +
4 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js
index ac49fffa6..4b3f50416 100644
--- a/jero-web/src/common/lang/en-us.js
+++ b/jero-web/src/common/lang/en-us.js
@@ -1122,7 +1122,7 @@ module.exports = {
RelevantMaterials: 'RelevantMaterials',
evaluatorFeedback: 'Evaluator Feedback',
nameTechnicalDocument: 'Name of technical document',
- chapter: 'chapter',
+ chapter: 'Chapter',
problemDescription: 'Problem Description',
filingExternalOpinions: 'Filing of external opinions',
regulatoryTechnicalEvaluationResults: 'Regulatory technical evaluation results',
diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue
index 26557fe06..1ba768a85 100644
--- a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue
+++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue
@@ -116,6 +116,7 @@
}
},
mounted() {
+ document.title = 'Country Card'+ '-' + this.$t('details')
this.queryCountry(() => {
this.replacePage()
})
diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseAdd.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseAdd.vue
index b058c8943..80477ef65 100644
--- a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseAdd.vue
+++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseAdd.vue
@@ -278,10 +278,12 @@
}
},
mounted() {
- document.title = this.$t('problemKnowledgeBase') + this.$t('newlyAdded')
this.getBase()
if (this.$route.query.id) {
this.queryById()
+ document.title = this.$t('problemKnowledgeBase') + this.$t('edit')
+ } else {
+ document.title = this.$t('problemKnowledgeBase') + this.$t('newlyAdded')
}
},
methods: {
diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease.vue
index d325f194d..674d582b4 100644
--- a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease.vue
+++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease.vue
@@ -95,6 +95,7 @@
},
mounted() {
this.getList()
+ document.title = this.$t('managePublishing')
},
methods: {
...mapGetters(['userInfo']),
From d5399a9f5fa4be86738dd3bb9479fea6d25fc947 Mon Sep 17 00:00:00 2001
From: qq787203167 <787203167@qq.com>
Date: Fri, 19 Aug 2022 10:43:23 +0800
Subject: [PATCH 75/94] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93?=
=?UTF-8?q?=E5=B7=B2=E7=9F=A5bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../searchCenter/components/problemKnowledgeBase.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/jero-web/src/views/documentTools/searchCenter/components/problemKnowledgeBase.vue b/jero-web/src/views/documentTools/searchCenter/components/problemKnowledgeBase.vue
index 764a146bc..bc6735658 100644
--- a/jero-web/src/views/documentTools/searchCenter/components/problemKnowledgeBase.vue
+++ b/jero-web/src/views/documentTools/searchCenter/components/problemKnowledgeBase.vue
@@ -8,7 +8,7 @@
+ v-model="queryParamOne.problem_type">
@@ -20,7 +20,7 @@
{{$t('market')}}
-
From 637491cc1e44d6c4c65ca775dbd24fa8fbe974ab Mon Sep 17 00:00:00 2001
From: wangzhijiang <12345678>
Date: Fri, 19 Aug 2022 10:51:29 +0800
Subject: [PATCH 76/94] =?UTF-8?q?=E9=97=AE=E9=A2=98=E7=9F=A5=E8=AF=86?=
=?UTF-8?q?=E5=BA=93-=E6=90=9C=E7=B4=A2=E4=B8=AD=E5=BF=83=E5=A2=9E?=
=?UTF-8?q?=E5=8A=A0=E6=A0=87=E8=AF=86=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../impl/ProblemKnowledgeBaseEOServiceImpl.java | 12 +++++++-----
.../src/main/resources/application-dev.yml | 10 +++++-----
2 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/problemKnowledgeBase/service/impl/ProblemKnowledgeBaseEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/problemKnowledgeBase/service/impl/ProblemKnowledgeBaseEOServiceImpl.java
index 1e318355f..036574e31 100644
--- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/problemKnowledgeBase/service/impl/ProblemKnowledgeBaseEOServiceImpl.java
+++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/problemKnowledgeBase/service/impl/ProblemKnowledgeBaseEOServiceImpl.java
@@ -16,6 +16,7 @@ import com.jero.modules.problemKnowledgeBase.enums.PraiseStatusEnum;
import com.jero.modules.problemKnowledgeBase.enums.ShowPermissionsEnum;
import com.jero.modules.problemKnowledgeBase.mapper.ProblemKnowledgeBaseEOMapper;
import com.jero.modules.problemKnowledgeBase.service.*;
+import com.jero.modules.searchcenter.enums.ModuleTypeFlagEnum;
import com.jero.modules.system.enums.DicCodeEnum;
import com.jero.modules.system.service.ISysDictService;
import com.jero.modules.system.util.StringUtils;
@@ -259,6 +260,7 @@ public class ProblemKnowledgeBaseEOServiceImpl extends ServiceImpl
map,String flag,String moduleType){
map.put("id",id);
+ map.put("module_type_flag", ModuleTypeFlagEnum.PROBLEM_KNOWLEDGE_BASE_CLASSIFY.getValue()); // 默认法规月报标识
map.put("module_type", moduleType);
map.put("content",content);
map.put("flag",flag);
@@ -282,11 +284,11 @@ public class ProblemKnowledgeBaseEOServiceImpl extends ServiceImpl
Date: Fri, 19 Aug 2022 11:28:29 +0800
Subject: [PATCH 77/94] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E6=90=9C=E7=B4=A2?=
=?UTF-8?q?=E4=B8=AD=E5=BF=83?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/monthlyReportRegulations.vue | 12 ++++----
.../components/problemKnowledgeBase.vue | 30 +++++++++++++------
.../searchCenter/components/whole.vue | 20 ++++++++++++-
3 files changed, 47 insertions(+), 15 deletions(-)
diff --git a/jero-web/src/views/documentTools/searchCenter/components/monthlyReportRegulations.vue b/jero-web/src/views/documentTools/searchCenter/components/monthlyReportRegulations.vue
index a1e8e6ef0..1c148031a 100644
--- a/jero-web/src/views/documentTools/searchCenter/components/monthlyReportRegulations.vue
+++ b/jero-web/src/views/documentTools/searchCenter/components/monthlyReportRegulations.vue
@@ -9,8 +9,9 @@
-
From 9ccfb14abd4fdaa24214115f051b87400be6b411 Mon Sep 17 00:00:00 2001
From: wangzhijiang <12345678>
Date: Fri, 19 Aug 2022 18:09:44 +0800
Subject: [PATCH 94/94] =?UTF-8?q?=E6=B3=A8=E9=87=8A=E9=97=AE=E9=A2=98?=
=?UTF-8?q?=E7=9F=A5=E8=AF=86=E5=BA=93=E9=9B=86=E6=88=90=E6=90=9C=E7=B4=A2?=
=?UTF-8?q?=E4=B8=AD=E5=BF=83=E4=BB=A3=E7=A0=81=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../impl/ProblemKnowledgeBaseEOServiceImpl.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/problemKnowledgeBase/service/impl/ProblemKnowledgeBaseEOServiceImpl.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/problemKnowledgeBase/service/impl/ProblemKnowledgeBaseEOServiceImpl.java
index acb14a326..f1c728345 100644
--- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/problemKnowledgeBase/service/impl/ProblemKnowledgeBaseEOServiceImpl.java
+++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/problemKnowledgeBase/service/impl/ProblemKnowledgeBaseEOServiceImpl.java
@@ -90,7 +90,7 @@ public class ProblemKnowledgeBaseEOServiceImpl extends ServiceImpl