|
@@ -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>
|