diff --git a/src/components/entities/EntityList.vue b/src/components/entities/EntityList.vue
index 6af9f128..77df8dd8 100644
--- a/src/components/entities/EntityList.vue
+++ b/src/components/entities/EntityList.vue
@@ -22,7 +22,53 @@
-
+
+
+ {{$t('common.country')}}:
+ {{d.country || '-'}}
+
+
+ {{$t('common.region')}}:
+ {{d.region || '-'}}
+
+
+ {{$t('common.asn')}}:
+ {{d.asn || '-'}}
+
+ {{$t('common.detail')}}
+
+
+
+ {{$t('entities.categoryGroup')}}:
+ {{d.categoryGroup || '-'}}
+
+
+ {{$t('entities.categoryName')}}:
+ {{d.categoryName || '-'}}
+
+
+ {{$t('entities.creditScore')}}:
+ {{d.reputationScore || '-'}}
+
+ {{$t('common.detail')}}
+
+
+
+ APP ID:
+ {{d.appId || '-'}}
+
+
+ {{$t('entities.category')}}:
+ {{d.appCategory || '-'}}
+
+
+ {{$t('entities.subcategory')}}:
+ {{d.appSubategory || '-'}}
+
+ {{$t('common.detail')}}
+
+
diff --git a/src/components/entities/entities.scss b/src/components/entities/entities.scss
index e383b92a..30da4e1b 100644
--- a/src/components/entities/entities.scss
+++ b/src/components/entities/entities.scss
@@ -69,7 +69,19 @@
}
}
.cn-entity__body {
- background-color: lightgoldenrodyellow;
+ .body__row {
+ padding: 0 0 0 20px;
+ color: #666;
+
+ .body__row-label {
+ padding-right: 15px;
+ }
+ }
+ .body__detail {
+ padding: 10px 0 0 20px;
+ color: $--color-primary;
+ cursor: pointer;
+ }
}
}
}