Quellcode durchsuchen

fixed page jump in business

maqingyang vor 11 Monaten
Ursprung
Commit
2cfb7172cd
1 geänderte Dateien mit 1 neuen und 2 gelöschten Zeilen
  1. 1 2
      src/views/system/business.vue

+ 1 - 2
src/views/system/business.vue

@@ -153,12 +153,11 @@ export default {
   computed: {},
   beforeCreate() {},
   created() {
-  
+    this.activeIndex = this.$route.query.activeIndex || 1; // 使用默认值 1
   },
   beforeMount() {},
   mounted()
   {
-    this.activeIndex = this.$route.query.activeIndex || 1; // 使用默认值 1
     this.handleMenuSelect(this.activeIndex);
   },
   beforeUpdate() {},