diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index 4b3f50416..66b94e6f8 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -531,7 +531,7 @@ module.exports = { newClause: 'New Clause', clauseNo: 'Item No.', functionalAreas: 'Functional Areas', - technicalField: 'Tech field', + technicalField: 'Tech Field', informationCategory: 'Info Type', contentValidity: 'Content Validity', content: 'Content', @@ -1051,7 +1051,7 @@ module.exports = { ParameterNo: 'Number', NRequired: 'Required', NParameterName: 'Para Name', - NtechnicalField: 'Tech field', + NtechnicalField: 'Tech Field', NparameterBatch: 'Params Batch', NareaOfResponsibility: 'Responsible Field', NParameterDescription: 'Description', diff --git a/jero-web/src/views/documentTools/searchCenter/components/problemKnowledgeBase.vue b/jero-web/src/views/documentTools/searchCenter/components/problemKnowledgeBase.vue index 3c8408fe3..b66553e89 100644 --- a/jero-web/src/views/documentTools/searchCenter/components/problemKnowledgeBase.vue +++ b/jero-web/src/views/documentTools/searchCenter/components/problemKnowledgeBase.vue @@ -238,13 +238,6 @@ postAction(this.url.getParagraphInfoList, query).then((res) => { if (res.success) { this.conList = res.result.records - if (this.conList && this.conList.length > 0) { - this.conList.forEach(val => { - if (val.content) { - val.content = this.getText(val.content) - } - }) - } this.total = res.result.total this.loading = false } else { diff --git a/jero-web/src/views/documentTools/searchCenter/components/whole.vue b/jero-web/src/views/documentTools/searchCenter/components/whole.vue index 6731a11b4..cc7d965e3 100644 --- a/jero-web/src/views/documentTools/searchCenter/components/whole.vue +++ b/jero-web/src/views/documentTools/searchCenter/components/whole.vue @@ -213,13 +213,6 @@ postAction(this.url.getInfoList, query).then((res) => { if (res.success) { this.conList = res.result.records - if (this.conList && this.conList.length > 0) { - this.conList.forEach(val => { - if (val.content) { - val.content = this.getText(val.content) - } - }) - } this.total = res.result.total } else { this.conList = []