3 Revize 92d04dff60 ... 357703e4a2

Autor SHA1 Zpráva Datum
  maqingyang 357703e4a2 Merge remote-tracking branch 'origin/develop' into develop před 11 měsíci
  maqingyang 3f03ebbf9f fixed some bugs in cooperator před 11 měsíci
  maqingyang 7eb136c189 fixed page jump in business před 11 měsíci

+ 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,
         }// 要传递的参数
       })
     },