From 425c32539741028b41fce0a6dc0833b293c76e33 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 05 三月 2025 10:52:59 +0800
Subject: [PATCH] 1.检测项目参数导入无关联模版时,页面无响应。 2.将以前接口返回201判断删掉
---
src/layout/components/Sidebar/Item.vue | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/layout/components/Sidebar/Item.vue b/src/layout/components/Sidebar/Item.vue
index be3285d..69a9858 100644
--- a/src/layout/components/Sidebar/Item.vue
+++ b/src/layout/components/Sidebar/Item.vue
@@ -17,11 +17,12 @@
const vnodes = []
if (icon) {
- vnodes.push(<svg-icon icon-class={icon}/>)
+ vnodes.push(<svg-icon icon-class={icon} />)
}
if (title) {
if (title.length > 5) {
+ // vnodes.push(<el-tooltip class="item" effect="dark" content={(title)} placement="top-end"><span slot='title' title={(title)}>{(title)}</span></el-tooltip>)
vnodes.push(<span slot='title' title={(title)}>{(title)}</span>)
} else {
vnodes.push(<span slot='title'>{(title)}</span>)
--
Gitblit v1.9.3