cr лет назад: 4
Родитель
Сommit
afb808d24b

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

@@ -92,6 +92,10 @@ export default {
92 92
         viewShop(){
93 93
             uni.navigateToMiniProgram({
94 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 568
                 <div class="success-main">
569 569
                     <h2 class="success-tit1">恭喜您!</h2>
570 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 573
                     <div class="success-box">
574 574
                         <p class="success-text">
@@ -681,6 +681,7 @@ export default {
681 681
             showGuide: false,
682 682
             agreement: false,
683 683
             storeStatus: -1,
684
+            shopName:''
684 685
         };
685 686
     },
686 687
     filters: {
@@ -793,6 +794,15 @@ export default {
793 794
 
794 795
     // 函数
795 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 806
         checkStatus() {
797 807
             /* 
798 808
                 闭店中 = 0,  // 已开通,店铺未营业
@@ -811,6 +821,9 @@ export default {
811 821
                 } else {
812 822
                     this.showGuide = true;
813 823
                 }
824
+                if(this.storeStatus === 3){
825
+                    this.getShopInfo();
826
+                }
814 827
                 if (this.storeStatus === 5) {
815 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 414
         commitPid(sendData) {
415
+
416
+
415 417
             this.api
416 418
                 .post("/Group/CommitPid", sendData, { pass: true })
417 419
                 .then((res) => {

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

@@ -68,7 +68,7 @@
68 68
 
69 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 72
         <wyg-bottom-tab
73 73
             ref="tabbar"
74 74
             :tabIndex="2"