From e1afd6281a8cccd1484fb03cccee3985f98777d4 Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Tue, 06 May 2025 18:40:52 +0800
Subject: [PATCH] Merge branch 'master' into test
---
src/views/algorithmRepository/algorithmRepository.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/views/algorithmRepository/algorithmRepository.vue b/src/views/algorithmRepository/algorithmRepository.vue
index 928ee07..ccda450 100644
--- a/src/views/algorithmRepository/algorithmRepository.vue
+++ b/src/views/algorithmRepository/algorithmRepository.vue
@@ -6,10 +6,10 @@
<img class="imgicon" :src="`${baseUrl}/后台-算法仓库/${item.dictValue}.png`" alt="" />
<div>{{ item.dictValue }}</div>
<div
- :class="item.dictValue === '病虫害识别' ? 'stopStatus' : 'normalStatus'"
+ :class="item.dictValue === '病虫害' ? 'stopStatus' : 'normalStatus'"
@click="jumpDatail(item)"
>
- {{ item.dictValue === '病虫害识别' ? '停用状态' : '正常状态' }}
+ {{ item.dictValue === '病虫害' ? '停用状态' : '正常状态' }}
</div>
</div>
</div>
@@ -114,7 +114,7 @@
});
};
const jumpDatail = val => {
- if (val.dictValue === '病虫害识别') {
+ if (val.dictValue === '病虫害') {
showDetail.value = false;
} else {
showDetail.value = true;
--
Gitblit v1.9.3