4
0

3 Ревизии 92d04dff60 ... 357703e4a2

Автор SHA1 Съобщение Дата
  maqingyang 357703e4a2 Merge remote-tracking branch 'origin/develop' into develop преди 11 месеца
  maqingyang 3f03ebbf9f fixed some bugs in cooperator преди 11 месеца
  maqingyang 7eb136c189 fixed page jump in business преди 11 месеца
променени са 2 файла, в които са добавени 9 реда и са изтрити 8 реда
  1. 2 1
      src/views/system/business.vue
  2. 7 7
      src/views/system/cooperatorEdit.vue

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

@@ -153,11 +153,12 @@ 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() {},

+ 7 - 7
src/views/system/cooperatorEdit.vue

@@ -242,13 +242,13 @@ export default {
         query: {
 
 
-          cooperatorId : this.$route.query.cooperatorId,
-          cooperatorName : this.$route.query.cooperatorName,
-          cooperatorNum : this.$route.query.cooperatorNum,
-          createTime : this.$route.query.createTime,
-          corpCertificateNum:this.$route.query.corpCertificateNum,
-          corpCertificateType:this.$route.query.corpCertificateType,
-          templateId:this.$route.query.templateId,
+          cooperatorId : this.cooperatorId,
+          cooperatorName : this.cooperatorName,
+          cooperatorNum : this.cooperatorNum,
+          createTime : this.createTime,
+          corpCertificateNum:this.corpCertificateNum,
+          corpCertificateType:this.corpCertificateType,
+          templateId:this.templateId,
         }// 要传递的参数
       })
     },