From 88e9c1443f54042e9685767cd17e38c19fc9e896 Mon Sep 17 00:00:00 2001 From: chenjinsong <523037378@qq.com> Date: Mon, 7 Feb 2022 17:18:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4tag=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E7=9A=84=E6=98=BE=E7=A4=BA=E5=AD=97=E6=AE=B5=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../search/explorer-search.scss | 2 + .../entityExplorer/search/ExplorerSearch.vue | 40 ++++++++++++------- 2 files changed, 28 insertions(+), 14 deletions(-) diff --git a/src/assets/css/components/views/entityExplorer/search/explorer-search.scss b/src/assets/css/components/views/entityExplorer/search/explorer-search.scss index 75afa58b..7cdb8eb9 100644 --- a/src/assets/css/components/views/entityExplorer/search/explorer-search.scss +++ b/src/assets/css/components/views/entityExplorer/search/explorer-search.scss @@ -58,6 +58,8 @@ font-weight: bold; .foot__item { + display: flex; + align-items: center; font-size: 14px; color: #3976CB; diff --git a/src/views/entityExplorer/search/ExplorerSearch.vue b/src/views/entityExplorer/search/ExplorerSearch.vue index d4828f1d..d477ebc0 100644 --- a/src/views/entityExplorer/search/ExplorerSearch.vue +++ b/src/views/entityExplorer/search/ExplorerSearch.vue @@ -67,7 +67,8 @@ export default { { name: 'entity_type', type: 'string', - label: this.$t('overall.type') + // label: this.$t('overall.type') + label: 'Type' }, { name: 'ip_addr', @@ -77,22 +78,26 @@ export default { { name: 'ip_location_country', type: 'string', - label: this.$t('overall.country') + // label: this.$t('overall.country') + label: 'Country' }, { name: 'ip_location_province', type: 'string', - label: this.$t('overall.province') + // label: this.$t('overall.province') + label: 'Province' }, { name: 'ip_location_city', type: 'string', - label: this.$t('overall.city') + // label: this.$t('overall.city') + label: 'City' }, { name: 'ip_asn', type: 'string', - label: this.$t('entities.asn') + // label: this.$t('entities.asn') + label: 'ASN' }, { name: 'ip_os', @@ -107,22 +112,26 @@ export default { { name: 'domain_category', type: 'string', - label: this.$t('entities.domainCategory') + // label: this.$t('entities.domainCategory') + label: 'Domain category' }, { name: 'domain_category_group', type: 'string', - label: this.$t('entities.domainDetail.categoryGroup') + // label: this.$t('entities.domainDetail.categoryGroup') + label: 'Domain category group' }, { name: 'domain_reputation_score', type: 'long', - label: this.$t('entities.domainDetail.reputationValue') + // label: this.$t('entities.domainDetail.reputationValue') + label: 'Domain reputation score' }, { name: 'domain_reputation_level', type: 'string', - label: this.$t('entities.reputationLevel') + // label: this.$t('entities.reputationLevel') + label: 'Domain reputation level' }, { name: 'domain_whois_email', @@ -162,25 +171,28 @@ export default { { name: 'app_name', type: 'string', - label: 'App' + label: 'APP' }, { name: 'app_category', type: 'string', - label: this.$t('trafficSummary.appCategory') + // label: this.$t('trafficSummary.appCategory') + label: 'APP category' }, { name: 'app_subcategory', type: 'string', - label: this.$t('entities.domainDetail.appSubcategory') + // label: this.$t('entities.domainDetail.appSubcategory') + label: 'APP subcategory' }, { name: 'app_risk', type: 'long', - label: this.$t('trafficSummary.appRisk') + // label: this.$t('trafficSummary.appRisk') + label: 'APP risk' } ], - operatorList: ['=', '!=', '>', '<', '>=', '<='/* , 'IN', 'NOT IN', 'LIKE', 'NOT LIKE' */], + operatorList: ['=', '!=', '>', '<', '>=', '<=', 'IN', 'NOT IN', 'LIKE', 'NOT LIKE'], connectionList: [ { value: 'AND',