Browse Source

修改bug

cr 4 years ago
parent
commit
afb808d24b

+ 4 - 0
src/pages/guide/success.vue

@@ -92,6 +92,10 @@ export default {
92
         viewShop(){
92
         viewShop(){
93
             uni.navigateToMiniProgram({
93
             uni.navigateToMiniProgram({
94
                 appId:'wx7d16ba51271496b8',
94
                 appId:'wx7d16ba51271496b8',
95
+                path:'/pages/goods/index?shopId='+this.shopData.id,
96
+                extraData:{
97
+                    shopId:this.shopData.id
98
+                }
95
             })
99
             })
96
         }
100
         }
97
     },
101
     },

+ 14 - 1
src/pages/index/index.vue

@@ -568,7 +568,7 @@
568
                 <div class="success-main">
568
                 <div class="success-main">
569
                     <h2 class="success-tit1">恭喜您!</h2>
569
                     <h2 class="success-tit1">恭喜您!</h2>
570
                     <h2 class="success-tit1">店铺申请通过审核</h2>
570
                     <h2 class="success-tit1">店铺申请通过审核</h2>
571
-                    <!-- <h3 class="success-shop-name">店铺名称:xxxx</h3> -->
571
+                    <h3 class="success-shop-name" v-if="shopName">店铺名称:{{shopName}}</h3>
572
 
572
 
573
                     <div class="success-box">
573
                     <div class="success-box">
574
                         <p class="success-text">
574
                         <p class="success-text">
@@ -681,6 +681,7 @@ export default {
681
             showGuide: false,
681
             showGuide: false,
682
             agreement: false,
682
             agreement: false,
683
             storeStatus: -1,
683
             storeStatus: -1,
684
+            shopName:''
684
         };
685
         };
685
     },
686
     },
686
     filters: {
687
     filters: {
@@ -793,6 +794,15 @@ export default {
793
 
794
 
794
     // 函数
795
     // 函数
795
     methods: {
796
     methods: {
797
+
798
+        getShopInfo(){
799
+            this.api.get('/Shop/GetInfo',{},{pass:true})
800
+                .then(res=>{
801
+                    if(res.success && res.data){
802
+                        this.shopName = res.data.name;
803
+                    }
804
+                })
805
+        },
796
         checkStatus() {
806
         checkStatus() {
797
             /* 
807
             /* 
798
                 闭店中 = 0,  // 已开通,店铺未营业
808
                 闭店中 = 0,  // 已开通,店铺未营业
@@ -811,6 +821,9 @@ export default {
811
                 } else {
821
                 } else {
812
                     this.showGuide = true;
822
                     this.showGuide = true;
813
                 }
823
                 }
824
+                if(this.storeStatus === 3){
825
+                    this.getShopInfo();
826
+                }
814
                 if (this.storeStatus === 5) {
827
                 if (this.storeStatus === 5) {
815
                     this.router.replace("/pages/guide/delivery");
828
                     this.router.replace("/pages/guide/delivery");
816
                 }
829
                 }

+ 2 - 0
src/pages/index/register.vue

@@ -412,6 +412,8 @@ export default {
412
         },
412
         },
413
 
413
 
414
         commitPid(sendData) {
414
         commitPid(sendData) {
415
+
416
+
415
             this.api
417
             this.api
416
                 .post("/Group/CommitPid", sendData, { pass: true })
418
                 .post("/Group/CommitPid", sendData, { pass: true })
417
                 .then((res) => {
419
                 .then((res) => {

+ 1 - 1
src/pages/manage/index.vue

@@ -68,7 +68,7 @@
68
 
68
 
69
         <!-- <button class="btn" @click="layout">退出登录</button> -->
69
         <!-- <button class="btn" @click="layout">退出登录</button> -->
70
 
70
 
71
-        <div class="ver">0.5.0</div>
71
+        <div class="ver">0.5.01</div>
72
         <wyg-bottom-tab
72
         <wyg-bottom-tab
73
             ref="tabbar"
73
             ref="tabbar"
74
             :tabIndex="2"
74
             :tabIndex="2"