Browse Source

修改团长号

cr 4 years ago
parent
commit
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
 # 0.4.9 (21.03.12 12:00) 
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
             "path": "pages/guide/success",
382
             "path": "pages/guide/success",
383
             "style": {
383
             "style": {
384
-                "navigationBarTitleText": "开通店铺"
384
+                "navigationBarTitleText": "开通成功"
385
             }
385
             }
386
         },
386
         },
387
         {
387
         {
@@ -390,6 +390,12 @@
390
                 "navigationBarTitleText": "协议"
390
                 "navigationBarTitleText": "协议"
391
             }
391
             }
392
         },
392
         },
393
+        {
394
+            "path": "pages/custom/course",
395
+            "style": {
396
+                "navigationBarTitleText": "教程"
397
+            }
398
+        },
393
         {
399
         {
394
             "path": "pages/manage/shop/points",
400
             "path": "pages/manage/shop/points",
395
             "style": {
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
         class="web-view"
4
         class="web-view"
5
             :src="'https://delivery.ixiaokejia.com/open_shop_agreement.html'"
5
             :src="'https://delivery.ixiaokejia.com/open_shop_agreement.html'"
6
         ></web-view>
6
         ></web-view>
7
-        <button class="btn" @click="jump('/pages/guide/success')">确定</button>
7
+        <!-- <button class="btn" @click="jump('/pages/guide/success')">确定</button> -->
8
     </div>
8
     </div>
9
 </template>
9
 </template>
10
 
10
 

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

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

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

@@ -1,22 +1,29 @@
1
 <template>
1
 <template>
2
-    <div class="page tabbar-page">
2
+    <div class="page">
3
         <div v-if="!loading" class="success-main">
3
         <div v-if="!loading" class="success-main">
4
             <h2 class="success-tit1">恭喜您!</h2>
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
             <div class="success-box">
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
                 <p class="success-text">
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
                 </p>
24
                 </p>
15
-                <button class="success-btn" @click="jump('/pages/guide/form')">
16
-                    现在开通
17
-                </button> 
18
             </div>
25
             </div>
19
-        </div>
26
+        </div> 
20
     </div>
27
     </div>
21
 </template>
28
 </template>
22
 
29
 
@@ -30,12 +37,16 @@ export default {
30
     data() {
37
     data() {
31
         return {
38
         return {
32
             loading: false,
39
             loading: false,
40
+            shopData: {},
41
+            qrCode: "",
33
         };
42
         };
34
     },
43
     },
35
     filters: {},
44
     filters: {},
36
-    onLoad() {},
37
-    async onShow() {
45
+    onLoad() {
46
+        this.getData();
47
+        this.getQrCode();
38
     },
48
     },
49
+    async onShow() {},
39
 
50
 
40
     // onPullDownRefresh() {
51
     // onPullDownRefresh() {
41
     //     this.getList();
52
     //     this.getList();
@@ -43,9 +54,45 @@ export default {
43
 
54
 
44
     // 函数
55
     // 函数
45
     methods: {
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
             console.log(e);
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
     justify-content: center;
120
     justify-content: center;
74
     align-items: center;
121
     align-items: center;
75
     height: 100%;
122
     height: 100%;
76
-    padding-bottom: 2rem;
77
-    padding-top: px(300);
123
+    padding-top: px(100);
78
 }
124
 }
79
 .success-btn {
125
 .success-btn {
80
     color: #fff;
126
     color: #fff;
81
     background-color: rgb(0, 188, 38);
127
     background-color: rgb(0, 188, 38);
82
     font-size: px(44);
128
     font-size: px(44);
83
     width: 100%;
129
     width: 100%;
130
+    &.plain{
131
+        background-color: transparent;
132
+        color: #333;
133
+        border: 1px solid #efefef;
134
+    }
84
 }
135
 }
85
 .success-tit1 {
136
 .success-tit1 {
86
     font-size: px(56);
137
     font-size: px(56);
@@ -104,16 +155,19 @@ export default {
104
 .success-box {
155
 .success-box {
105
     padding: px(40);
156
     padding: px(40);
106
     width: 100%;
157
     width: 100%;
107
-    margin-top: px(300);
158
+    margin-top: px(80);
159
+    .success-btn {
160
+        margin-bottom: px(40);
161
+    }
108
     .success-text {
162
     .success-text {
109
         width: 100%;
163
         width: 100%;
110
         text-align: center;
164
         text-align: center;
111
         color: #409eff;
165
         color: #409eff;
112
-        margin-bottom: px(50);
166
+        margin-bottom: px(60);
113
         display: flex;
167
         display: flex;
114
         align-items: center;
168
         align-items: center;
115
         justify-content: center;
169
         justify-content: center;
116
-        .success-checkbox{
170
+        .success-checkbox {
117
             transform: scale(0.8);
171
             transform: scale(0.8);
118
         }
172
         }
119
     }
173
     }
@@ -132,4 +186,23 @@ export default {
132
 .success-link {
186
 .success-link {
133
     color: #409eff;
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
 </style>
208
 </style>

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

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

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

@@ -95,7 +95,7 @@
95
 
95
 
96
         <!-- <button class="btn" @click="layout">退出登录</button> -->
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
         <wyg-bottom-tab
99
         <wyg-bottom-tab
100
             ref="tabbar"
100
             ref="tabbar"
101
             :tabIndex="2"
101
             :tabIndex="2"