diff --git a/src/assets/model_header.png b/src/assets/model_header.png index d55e17c..081c8fd 100644 Binary files a/src/assets/model_header.png and b/src/assets/model_header.png differ diff --git a/src/views/modelList/components/ModelCard.vue b/src/views/modelList/components/ModelCard.vue index 61a9659..21c2012 100644 --- a/src/views/modelList/components/ModelCard.vue +++ b/src/views/modelList/components/ModelCard.vue @@ -12,8 +12,8 @@ interface CardProductType { description: string; deviceSort: string; updateTime: string; - type: number; - industry: number; + type: string; + industry: string; } const props = defineProps({ @@ -68,6 +68,11 @@ const cardClass = computed(() => [ { "model-card_offline": props.device?.state === "离线" } ]); +const deepAlgorithm = computed(() => [ + "model-type", + { "model-type_deep": props.device?.type === "深度学习" } +]); + // const stateClass = computed(() => [ // "model-state", // { "model-state_offline": props.device?.state === "离线" } @@ -78,6 +83,7 @@ const cardClass = computed(() => [