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

+ 4 - 0
releaselog.md

@@ -1,5 +1,9 @@
1 1
 
2 2
 
3
+# 0.5.0 (21.03.13 12:00) 
4
+### 完成开店
5
+
6
+
3 7
 # 0.4.9 (21.03.12 12:00) 
4 8
 ### 增加开店
5 9
 

+ 7 - 1
src/pages.json

@@ -381,7 +381,7 @@
381 381
         {
382 382
             "path": "pages/guide/success",
383 383
             "style": {
384
-                "navigationBarTitleText": "开通店铺"
384
+                "navigationBarTitleText": "开通成功"
385 385
             }
386 386
         },
387 387
         {
@@ -390,6 +390,12 @@
390 390
                 "navigationBarTitleText": "协议"
391 391
             }
392 392
         },
393
+        {
394
+            "path": "pages/custom/course",
395
+            "style": {
396
+                "navigationBarTitleText": "教程"
397
+            }
398
+        },
393 399
         {
394 400
             "path": "pages/manage/shop/points",
395 401
             "style": {

+ 40 - 0
src/pages/custom/course.vue

@@ -0,0 +1,40 @@
1
+<template>
2
+    <div class="page">
3
+        <web-view
4
+        class="web-view"
5
+            :src="'https://delivery.ixiaokejia.com/course.html'"
6
+        ></web-view>
7
+        <!-- <button class="btn" @click="jump('/pages/guide/success')">确定</button> -->
8
+    </div>
9
+</template>
10
+
11
+<script>
12
+export default {
13
+    name: "",
14
+
15
+    // 数据
16
+    data() {
17
+        return {
18
+            url: "",
19
+        };
20
+    },
21
+
22
+    onShow() {
23
+        const self = this;
24
+        self.url = decodeURIComponent(self.$mp.query.url);
25
+    },
26
+
27
+    // 函数
28
+    methods: {},
29
+
30
+    // 数据计算
31
+    computed: {},
32
+
33
+    // 数据监听
34
+    watch: {},
35
+};
36
+</script>
37
+
38
+<style lang="scss" scoped>
39
+
40
+</style>

+ 1 - 1
src/pages/custom/webview.vue

@@ -4,7 +4,7 @@
4 4
         class="web-view"
5 5
             :src="'https://delivery.ixiaokejia.com/open_shop_agreement.html'"
6 6
         ></web-view>
7
-        <button class="btn" @click="jump('/pages/guide/success')">确定</button>
7
+        <!-- <button class="btn" @click="jump('/pages/guide/success')">确定</button> -->
8 8
     </div>
9 9
 </template>
10 10
 

+ 2 - 2
src/pages/guide/points.vue

@@ -153,8 +153,8 @@ export default {
153 153
                     this.submitLoading = false;
154 154
                     uni.hideLoading();
155 155
                     if (res.success) {
156
-                        this.fn.showToast("设置成功");
157
-                        this.router.back();
156
+                        // this.fn.showToast("设置成功");
157
+                        this.router.replace('/pages/guide/success');
158 158
                     } else {
159 159
                         this.fn.showModal({
160 160
                             title: "设置错误",

+ 93 - 20
src/pages/guide/success.vue

@@ -1,22 +1,29 @@
1 1
 <template>
2
-    <div class="page tabbar-page">
2
+    <div class="page">
3 3
         <div v-if="!loading" class="success-main">
4 4
             <h2 class="success-tit1">恭喜您!</h2>
5
-            <h2 class="success-tit1">店铺申请通过审核</h2>
6
-            <h3 class="success-shop-name">店铺名称:xxxx</h3>
5
+            <h2 class="success-tit1">店铺{{ shopData.name || "" }}</h2>
6
+            <h3 class="success-tit1">已经开通成功</h3>
7
+
8
+            <div class="qrcode">
9
+                <my-image class="img" :src="qrCode" @click="viewImg"></my-image>
10
+                <p class="text">{{ shopData.name || "" }}二维码</p>
11
+            </div>
7 12
 
8 13
             <div class="success-box">
14
+                <button class="success-btn" @click="viewShop">
15
+                    查看店铺
16
+                </button>
17
+                <button class="success-btn plain" @click="jump('/pages/custom/course')">
18
+                    查看教程
19
+                </button>
9 20
                 <p class="success-text">
10
-                    <checkbox-group @change="checkboxChange">
11
-                        <checkbox  class="success-checkbox"/>
12
-                    </checkbox-group>
13
-                    <a  @click="jump({path:'/pages/custom/webview'})">店铺使用协议</a>
21
+                    <a @click="jump({ path: '/pages/manage/index',isTabBar:true })"
22
+                        >返回功能菜单页</a
23
+                    >
14 24
                 </p>
15
-                <button class="success-btn" @click="jump('/pages/guide/form')">
16
-                    现在开通
17
-                </button> 
18 25
             </div>
19
-        </div>
26
+        </div> 
20 27
     </div>
21 28
 </template>
22 29
 
@@ -30,12 +37,16 @@ export default {
30 37
     data() {
31 38
         return {
32 39
             loading: false,
40
+            shopData: {},
41
+            qrCode: "",
33 42
         };
34 43
     },
35 44
     filters: {},
36
-    onLoad() {},
37
-    async onShow() {
45
+    onLoad() {
46
+        this.getData();
47
+        this.getQrCode();
38 48
     },
49
+    async onShow() {},
39 50
 
40 51
     // onPullDownRefresh() {
41 52
     //     this.getList();
@@ -43,9 +54,45 @@ export default {
43 54
 
44 55
     // 函数
45 56
     methods: {
46
-
47
-        checkboxChange(e){
57
+        getQrCode(){
58
+            this.api.get('/Shop/GetQrCode',{width:300})
59
+                .then(res=>{
60
+                    this.qrCode = res.data;
61
+                })
62
+        },
63
+        getData() {
64
+            this.api.get("/Shop/GetInfo", {}, { pass: true }).then((res) => {
65
+                if (res.success && res.data) {
66
+                    this.shopData = res.data;
67
+                } else {
68
+                    this.fn
69
+                        .showModal({
70
+                            content: res.message,
71
+                            showCancel: false,
72
+                        })
73
+                        .then((res) => {
74
+                            if (res.confirm) {
75
+                                this.router.back();
76
+                            }
77
+                        });
78
+                }
79
+            });
80
+        },
81
+        checkboxChange(e) {
48 82
             console.log(e);
83
+        },
84
+
85
+        viewImg() {
86
+            uni.previewImage({
87
+                urls: [this.qrCode],
88
+                longPressActions: true,
89
+            });
90
+        },
91
+
92
+        viewShop(){
93
+            uni.navigateToMiniProgram({
94
+                appId:'wx7d16ba51271496b8',
95
+            })
49 96
         }
50 97
     },
51 98
 
@@ -73,14 +120,18 @@ export default {
73 120
     justify-content: center;
74 121
     align-items: center;
75 122
     height: 100%;
76
-    padding-bottom: 2rem;
77
-    padding-top: px(300);
123
+    padding-top: px(100);
78 124
 }
79 125
 .success-btn {
80 126
     color: #fff;
81 127
     background-color: rgb(0, 188, 38);
82 128
     font-size: px(44);
83 129
     width: 100%;
130
+    &.plain{
131
+        background-color: transparent;
132
+        color: #333;
133
+        border: 1px solid #efefef;
134
+    }
84 135
 }
85 136
 .success-tit1 {
86 137
     font-size: px(56);
@@ -104,16 +155,19 @@ export default {
104 155
 .success-box {
105 156
     padding: px(40);
106 157
     width: 100%;
107
-    margin-top: px(300);
158
+    margin-top: px(80);
159
+    .success-btn {
160
+        margin-bottom: px(40);
161
+    }
108 162
     .success-text {
109 163
         width: 100%;
110 164
         text-align: center;
111 165
         color: #409eff;
112
-        margin-bottom: px(50);
166
+        margin-bottom: px(60);
113 167
         display: flex;
114 168
         align-items: center;
115 169
         justify-content: center;
116
-        .success-checkbox{
170
+        .success-checkbox {
117 171
             transform: scale(0.8);
118 172
         }
119 173
     }
@@ -132,4 +186,23 @@ export default {
132 186
 .success-link {
133 187
     color: #409eff;
134 188
 }
189
+.qrcode {
190
+    padding-top: px(100);
191
+    .img {
192
+        width: px(550);
193
+        height: px(550);
194
+        display: block;
195
+        margin: 0 auto;
196
+        /deep/ img {
197
+            width: px(550);
198
+            height: px(550);
199
+        }
200
+    }
201
+    .text {
202
+        margin-top: px(30);
203
+        font-size: px(40);
204
+        color: #666;
205
+        text-align: center;
206
+    }
207
+}
135 208
 </style>

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

@@ -389,10 +389,11 @@ export default {
389 389
                 .get("/Group/GetGroupInfo", sendData, { pass: true })
390 390
                 .then((res) => {
391 391
                     if (res.success) {
392
+                    uni.hideLoading();
392 393
                         this.fn
393 394
                             .showModal({
394 395
                                 title: "团长信息",
395
-                                content: `当前团长为${res.data.accountName},是否确认提交`,
396
+                                content: `当前团店铺名称为:${res.data.shopName},是否确认提交`,
396 397
                             })
397 398
                             .then((res) => {
398 399
                                 if (res.confirm) {
@@ -414,7 +415,6 @@ export default {
414 415
             this.api
415 416
                 .post("/Group/CommitPid", sendData, { pass: true })
416 417
                 .then((res) => {
417
-                    uni.hideLoading();
418 418
                     if (res.success) {
419 419
                         this.fn.showToast(`团长号提交成功`);
420 420
                         this.pidCode = res.data;

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

@@ -95,7 +95,7 @@
95 95
 
96 96
         <!-- <button class="btn" @click="layout">退出登录</button> -->
97 97
 
98
-        <div class="ver">0.4.9</div>
98
+        <div class="ver">0.5.0</div>
99 99
         <wyg-bottom-tab
100 100
             ref="tabbar"
101 101
             :tabIndex="2"