From 5808f76456ca0d40de5074f132b73a5a488e3e13 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 09 Dec 2025 09:12:03 +0800
Subject: [PATCH] Merge branch 'refs/heads/feature/v9.0/9.0.1' into test
---
src/views/algorithmRepository/algorithmRepository.vue | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/views/algorithmRepository/algorithmRepository.vue b/src/views/algorithmRepository/algorithmRepository.vue
index 534ab0a..87e49be 100644
--- a/src/views/algorithmRepository/algorithmRepository.vue
+++ b/src/views/algorithmRepository/algorithmRepository.vue
@@ -4,7 +4,7 @@
<div class="algorithItem" v-if="!showDetail">
<div class="item" v-for="(item, index) in AlgorithmData" :key="index"
:class="{ 'active-bg': activeItem === item.dictValue }" @click="jumpDatail(item)">
- <img class="imgicon" :src="`${baseUrl}/后台-算法仓库/${item.dictValue}.png`" alt="" />
+ <img class="imgicon" :src="`${baseUrl}/manage-sf-icon-source/${item.dictKey}.png`" alt="" />
<div class="item-title">{{ item.dictValue }}</div>
<div :class="!statusSign && item.dictValue === nameSign ? 'stopStatus' : 'normalStatus'"
@click.stop="changeStatus(item)">
@@ -101,6 +101,8 @@
// 处理数据
AlgorithmData.value = res.data.data['SF']
}
+ console.log('算法',AlgorithmData.value);
+
})
}
const activeItem = ref(null)
--
Gitblit v1.9.3