Преглед изворни кода

fix: 修复`title`过长显示样式问题

xiaoxian521 пре 2 година
родитељ
комит
e4c33a7d22
2 измењених фајлова са 7 додато и 1 уклоњено
  1. 6 0
      src/layout/components/sidebar/logo.vue
  2. 1 1
      src/utils/http/index.ts

+ 6 - 0
src/layout/components/sidebar/logo.vue

@@ -51,6 +51,12 @@ const { title } = useNav();
     margin-top: 5px;
 
     .sidebar-title {
+      display: block;
+      width: 160px;
+      overflow: hidden;
+      text-overflow: ellipsis;
+      white-space: nowrap;
+      text-align: left;
       color: #1890ff;
       font-weight: 600;
       font-size: 20px;

+ 1 - 1
src/utils/http/index.ts

@@ -59,7 +59,7 @@ class PureHttp {
           PureHttp.initConfig.beforeRequestCallback($config);
           return $config;
         }
-        /** 请求白名单(通过设置请求白名单,防止token过期后再请求造成的死循环问题) */
+        /** 请求白名单,放置一些不需要token的接口(通过设置请求白名单,防止token过期后再请求造成的死循环问题) */
         const whiteList = ["/refreshToken", "/login"];
         return whiteList.some(v => config.url.indexOf(v) > -1)
           ? config