|
|
@@ -103,7 +103,8 @@ const getTypeLabel = (type: number) => {
|
|
|
72: 'AI应用',
|
|
|
73: 'H5页面',
|
|
|
74: '视频',
|
|
|
- 75: 'B站视频'
|
|
|
+ 75: 'B站视频',
|
|
|
+ 76: '应用中心'
|
|
|
}
|
|
|
return typeMap[type] || '未知'
|
|
|
}
|
|
|
@@ -116,7 +117,8 @@ const getTypeClass = (type: number) => {
|
|
|
72: 'type-ai',
|
|
|
73: 'type-h5',
|
|
|
74: 'type-video',
|
|
|
- 75: 'type-bilibili'
|
|
|
+ 75: 'type-bilibili',
|
|
|
+ 76: 'type-app-center'
|
|
|
}
|
|
|
return classMap[type] || 'type-default'
|
|
|
}
|
|
|
@@ -271,6 +273,10 @@ const getTypeClass = (type: number) => {
|
|
|
&.type-default {
|
|
|
background-color: #757575;
|
|
|
}
|
|
|
+
|
|
|
+ &.type-app-center {
|
|
|
+ background-color: #673ab7;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.webpage-url {
|