Просмотр исходного кода

perf: 优化标签页,刷新后保证滚动到当前标签页位置

xiaoxian521 1 год назад
Родитель
Сommit
b9144f0b6c
2 измененных файлов с 10 добавлено и 5 удалено
  1. 7 1
      src/layout/components/tag/index.vue
  2. 3 4
      src/views/components/color-picker.vue

+ 7 - 1
src/layout/components/tag/index.vue

@@ -9,7 +9,12 @@ import { handleAliveRoute, getTopMenu } from "@/router/utils";
 import { useSettingStoreHook } from "@/store/modules/settings";
 import { useMultiTagsStoreHook } from "@/store/modules/multiTags";
 import { ref, watch, unref, toRaw, nextTick, onBeforeUnmount } from "vue";
-import { isEqual, isAllEmpty, useResizeObserver } from "@pureadmin/utils";
+import {
+  delay,
+  isEqual,
+  isAllEmpty,
+  useResizeObserver
+} from "@pureadmin/utils";
 
 import ExitFullscreen from "@iconify-icons/ri/fullscreen-exit-fill";
 import Fullscreen from "@iconify-icons/ri/fullscreen-fill";
@@ -504,6 +509,7 @@ onMounted(() => {
   });
 
   useResizeObserver(scrollbarDom, dynamicTagView);
+  delay().then(() => dynamicTagView());
 });
 
 onBeforeUnmount(() => {

+ 3 - 4
src/views/components/color-picker.vue

@@ -45,22 +45,21 @@ function onClick() {
   <el-card shadow="never">
     <template #header>
       <div class="card-header">
-        <span class="font-medium">
+        <el-space wrap :size="40">
           <el-link
             href="https://element-plus.org/zh-CN/component/color-picker.html"
             target="_blank"
-            style="margin: 0 4px 5px; font-size: 16px"
+            style="font-size: 16px; font-weight: 800"
           >
             颜色选择器
           </el-link>
-          <br />
           <el-radio-group v-model="size" size="small">
             <el-radio label="large">大尺寸</el-radio>
             <el-radio label="default">默认尺寸</el-radio>
             <el-radio label="small">小尺寸</el-radio>
             <el-radio label="disabled">禁用</el-radio>
           </el-radio-group>
-        </span>
+        </el-space>
       </div>
     </template>