fix: 修复实体列表app和domain图标与原型不对应的问题
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
@font-face {
|
||||
font-family: "cn-icon"; /* Project id 2614877 */
|
||||
src: url('iconfont.woff2?t=1691743782241') format('woff2'),
|
||||
url('iconfont.woff?t=1691743782241') format('woff'),
|
||||
url('iconfont.ttf?t=1691743782241') format('truetype');
|
||||
src: url('iconfont.woff2?t=1693386443164') format('woff2'),
|
||||
url('iconfont.woff?t=1693386443164') format('woff'),
|
||||
url('iconfont.ttf?t=1693386443164') format('truetype');
|
||||
}
|
||||
|
||||
.cn-icon {
|
||||
@@ -13,7 +13,11 @@
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.cn-icon-_zhanbi:before {
|
||||
.cn-icon-category-group:before {
|
||||
content: "\e6c7";
|
||||
}
|
||||
|
||||
.cn-icon-proportion:before {
|
||||
content: "\e65a";
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -67,7 +67,7 @@
|
||||
</div>
|
||||
<div class="overview-right">
|
||||
<div class="right-row margin-b-6">
|
||||
<i class="cn-icon cn-icon-_zhanbi entity-explorer-total__icon"></i>
|
||||
<i class="cn-icon cn-icon-proportion entity-explorer-total__icon"></i>
|
||||
<div class="right-label">{{ $t('network.total') }}</div>
|
||||
<div class="right-label-loading">
|
||||
<loading :loading="loadingApp" size="small"></loading>
|
||||
@@ -97,7 +97,7 @@
|
||||
</div>
|
||||
<div class="overview-right">
|
||||
<div class="right-row margin-b-6">
|
||||
<i class="cn-icon cn-icon-_zhanbi entity-explorer-total__icon"></i>
|
||||
<i class="cn-icon cn-icon-proportion entity-explorer-total__icon"></i>
|
||||
<div class="right-label">{{ $t('network.total') }}</div>
|
||||
<div class="right-label-loading">
|
||||
<loading :loading="loadingDomain" size="small"></loading>
|
||||
@@ -127,7 +127,7 @@
|
||||
</div>
|
||||
<div class="overview-right">
|
||||
<div class="right-row margin-b-6">
|
||||
<i class="cn-icon cn-icon-_zhanbi entity-explorer-total__icon"></i>
|
||||
<i class="cn-icon cn-icon-proportion entity-explorer-total__icon"></i>
|
||||
<div class="right-label">{{ $t('network.total') }}</div>
|
||||
<div class="right-label-loading">
|
||||
<loading :loading="loadingIp" size="small"></loading>
|
||||
|
||||
@@ -41,12 +41,12 @@
|
||||
</template>
|
||||
<template v-else-if="entityData.entityType === 'domain'">
|
||||
<div class="basic-info__item">
|
||||
<i class="cn-icon cn-icon-sub-category"></i>
|
||||
<i class="cn-icon cn-icon-category-group"></i>
|
||||
<span class="row-item-label">{{ $t('entities.category') }} : </span>
|
||||
<span class="row-item-value">{{ entityData.category ? entityData.category.categoryGroup : '-' }}</span>
|
||||
</div>
|
||||
<div class="basic-info__item">
|
||||
<i class="cn-icon cn-icon-category"></i>
|
||||
<i class="cn-icon cn-icon-sub-category"></i>
|
||||
<span class="row-item-label">{{ $t('entities.subcategory') }} : </span>
|
||||
<span class="row-item-value">{{ entityData.category ? entityData.category.categoryName : '-' }}</span>
|
||||
</div>
|
||||
@@ -58,17 +58,17 @@
|
||||
</template>
|
||||
<template v-else-if="entityData.entityType === 'app'">
|
||||
<div class="basic-info__item">
|
||||
<i class="cn-icon cn-icon-id"></i>
|
||||
<i class="cn-icon cn-icon-category2"></i>
|
||||
<span class="row-item-label">{{ $t('entities.category') }} : </span>
|
||||
<span class="row-item-value">{{ entityData.category ? entityData.category.appCategory : '-' }}</span>
|
||||
</div>
|
||||
<div class="basic-info__item">
|
||||
<i class="cn-icon cn-icon-category"></i>
|
||||
<i class="cn-icon cn-icon-sub-category"></i>
|
||||
<span class="row-item-label">{{ $t('entities.subcategory') }} : </span>
|
||||
<span class="row-item-value">{{ entityData.category ? entityData.category.appSubcategory : '-' }}</span>
|
||||
</div>
|
||||
<div class="basic-info__item">
|
||||
<i class="cn-icon cn-icon-sub-category"></i>
|
||||
<i class="cn-icon cn-icon-credit-rating"></i>
|
||||
<span class="row-item-label">{{ $t('entities.risk') }} : </span>
|
||||
<span class="row-item-value">{{ entityData.category ? appRisk(entityData.category.appRisk) : '-' }}</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user