From b75ca1ebf8f37446ceb1ada28ba8c5d358770052 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 06 May 2025 16:54:45 +0800
Subject: [PATCH] 登录跳转到事件工单
---
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