Browse Source

店铺修改

cr 4 years ago
parent
commit
2b40cbf26c

+ 47 - 47
src/App.vue

@@ -35,53 +35,53 @@ export default {
35 35
         console.log(user);
36 36
 
37 37
         // 判断用户是否验证团长号
38
-        // if (user.roleId && user.bundleId !== 0) {
39
-        // } else {
40
-        //     this.api
41
-        //         .get(
42
-        //             "/Group/CheckCode",
43
-        //             {
44
-        //                 platform: user.fromPlatform,
45
-        //             },
46
-        //             { pass: true }
47
-        //         )
48
-        //         .then((res) => {
49
-        //             if (res.success) {
50
-        //                 if (res.data.verified) {
51
-        //                     if (!res.data.storeId) {
52
-        //                         this.router.push({
53
-        //                             isTabBar: true,
54
-        //                             path: "/pages/assistant/index",
55
-        //                         });
56
-        //                         this.fn.setTabBar([3]);
57
-        //                     } else {
58
-        //                         this.router.push({
59
-        //                             isTabBar: true,
60
-        //                             path: "/pages/index/index",
61
-        //                         });
62
-        //                         this.fn.setTabBar([1, 2]);
63
-        //                     }
64
-        //                 } else {
65
-        //                     this.router.push({
66
-        //                         path: "/pages/index/register",
67
-        //                         query: {
68
-        //                             pidCode: res.data.code,
69
-        //                             step: 3,
70
-        //                         },
71
-        //                     });
72
-        //                     this.fn.setTabBar([3]);
73
-        //                 }
74
-        //             } else {
75
-        //                 this.router.push({
76
-        //                     path: "/pages/index/register",
77
-        //                     query: {
78
-        //                         step: 2,
79
-        //                     },
80
-        //                 });
81
-        //                 this.fn.setTabBar([3]);
82
-        //             }
83
-        //         });
84
-        // }
38
+        if (user.roleId && user.bundleId !== 0) {
39
+        } else {
40
+            this.api
41
+                .get(
42
+                    "/Group/CheckCode",
43
+                    {
44
+                        platform: user.fromPlatform,
45
+                    },
46
+                    { pass: true }
47
+                )
48
+                .then((res) => {
49
+                    if (res.success) {
50
+                        if (res.data.verified) {
51
+                            // if (!res.data.storeId) {
52
+                            //     this.router.push({
53
+                            //         isTabBar: true,
54
+                            //         path: "/pages/assistant/index",
55
+                            //     });
56
+                            //     this.fn.setTabBar([3]);
57
+                            // } else {
58
+                            //     this.router.push({
59
+                            //         isTabBar: true,
60
+                            //         path: "/pages/index/index",
61
+                            //     });
62
+                            //     this.fn.setTabBar([1, 2]);
63
+                            // }
64
+                        } else {
65
+                            this.router.push({
66
+                                path: "/pages/index/register",
67
+                                query: {
68
+                                    pidCode: res.data.code,
69
+                                    step: 3,
70
+                                },
71
+                            });
72
+                            this.fn.setTabBar([3]);
73
+                        }
74
+                    } else {
75
+                        this.router.push({
76
+                            path: "/pages/index/register",
77
+                            query: {
78
+                                step: 2,
79
+                            },
80
+                        });
81
+                        this.fn.setTabBar([3]);
82
+                    }
83
+                });
84
+        }
85 85
     },
86 86
 
87 87
     onShow: async function (option) {

+ 4 - 4
src/common/js/plugin.js

@@ -200,16 +200,16 @@ export default {
200 200
     },
201 201
 
202 202
     // 开店申请订阅
203
-    applyShopsubscribe(orderId, type) {
203
+    applyShopsubscribe(objId) {
204 204
         api.get('/Subscription/GetMsgTpls', {
205
-            type: type,
205
+            type: 7,
206 206
         }).then(res => {
207 207
             uni.requestSubscribeMessage({
208 208
                 tmplIds: res.data,
209 209
                 success: () => {
210 210
                     api.post('/Subscription/Subscribe', {
211
-                        type: 4,
212
-                        objectId: orderId.toString(),
211
+                        type: 7,
212
+                        objectId: objId.toString(),
213 213
                     }).then(() => {
214 214
                         console.log('订阅成功')
215 215
                     })

+ 13 - 7
src/pages.json

@@ -360,16 +360,10 @@
360 360
                 "navigationBarTitleText": "找回密码"
361 361
             }
362 362
         },
363
-        {
364
-            "path": "pages/guide/index",
365
-            "style": {
366
-                "navigationBarTitleText": "申请店铺"
367
-            }
368
-        },
369 363
         {
370 364
             "path": "pages/guide/form",
371 365
             "style": {
372
-                "navigationBarTitleText": "申请店铺"
366
+                "navigationBarTitleText": "开通店铺"
373 367
             }
374 368
         },
375 369
         {
@@ -395,6 +389,18 @@
395 389
             "style": {
396 390
                 "navigationBarTitleText": ""
397 391
             }
392
+        },
393
+        {
394
+            "path": "pages/manage/points",
395
+            "style": {
396
+                "navigationBarTitleText": "设置积分"
397
+            }
398
+        },
399
+        {
400
+            "path": "pages/manage/set-shop",
401
+            "style": {
402
+                "navigationBarTitleText": "店铺设置"
403
+            }
398 404
         }
399 405
     ]
400 406
 }

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

@@ -2,7 +2,7 @@
2 2
     <div class="page">
3 3
         <web-view
4 4
         class="web-view"
5
-            :src="'https://baike.baidu.com/item/%E8%8A%B1%E7%B3%96/13207983?fromtitle=%E8%8A%B1%E3%81%9F%E3%82%93&fromid=17503011&fr=aladdin'"
5
+            :src="'https://delivery.ixiaokejia.com/open_shop_agreement.html'"
6 6
         ></web-view>
7 7
         <button class="btn" @click="jump('/pages/guide/success')">确定</button>
8 8
     </div>

+ 233 - 14
src/pages/guide/apply.vue

@@ -14,29 +14,163 @@
14 14
                     />
15 15
                 </div>
16 16
             </section>
17
+            <section class="form-item">
18
+                <div class="label">
19
+                    <span class="required">*</span>
20
+                    联系方式:
21
+                </div>
22
+                <div class="box">
23
+                    <input
24
+                        type="text"
25
+                        v-model="form.mobile"
26
+                        placeholder="请填写联系方式"
27
+                    />
28
+                </div>
29
+            </section>
30
+            <section class="form-item">
31
+                <div class="label">
32
+                    <span class="required">*</span>
33
+                    姓名:
34
+                </div>
35
+                <div class="box">
36
+                    <input
37
+                        type="text"
38
+                        v-model="form.name"
39
+                        placeholder="请填写姓名"
40
+                    />
41
+                </div>
42
+            </section>
43
+            <section class="form-item">
44
+                <div class="label">
45
+                    <span class="required">*</span>
46
+                    提货点地址:
47
+                </div>
48
+                <div class="box" @click="mapClick">
49
+                    <input
50
+                        type="text"
51
+                        v-model="form.pickUpAddress"
52
+                        :disabled="true"
53
+                        placeholder="请选择地址"
54
+                    />
55
+                </div>
56
+                <div class="tool" @click="mapClick">
57
+                    <my-image
58
+                        class="address-icon"
59
+                        src="/static/common/address.png"
60
+                    ></my-image>
61
+                </div>
62
+            </section>
63
+            <section class="form-item">
64
+                <div class="label">
65
+                    <span class="required">*</span>
66
+                    详细地址:
67
+                </div>
68
+                <div class="box">
69
+                    <input
70
+                        type="text"
71
+                        v-model="form.address"
72
+                        placeholder="请填写详细地址"
73
+                    />
74
+                </div>
75
+            </section>
76
+            <!-- <section class="form-item">
77
+                <div class="label">
78
+                    <span class="required">*</span>
79
+                    身份证照 (正反面):
80
+                </div>
81
+                <div class="box">
82
+                    <easy-upload
83
+                        :types="'image'"
84
+                        v-model="mainImage"
85
+                        :uploadCount="2"
86
+                        @change="minImgChange"
87
+                    ></easy-upload>
88
+                </div>
89
+            </section>
90
+            <section class="form-item">
91
+                <div class="label">
92
+                    店铺营业执照:
93
+                </div>
94
+                <div class="box">
95
+                    <easy-upload
96
+                        :types="'image'"
97
+                        v-model="mainImage2"
98
+                        :uploadCount="1"
99
+                        @change="minImgChange2"
100
+                    ></easy-upload>
101
+                </div>
102
+            </section>
103
+            <section class="form-item">
104
+                <div class="label">食品许可证:</div>
105
+                <div class="box">
106
+                    <easy-upload
107
+                        :types="'image'"
108
+                        v-model="mainImage3"
109
+                        :uploadCount="1"
110
+                        @change="minImgChange3"
111
+                    ></easy-upload>
112
+                </div>
113
+            </section> -->
114
+            <!-- <section class="form-item">
115
+                <div class="label">
116
+                    推荐人:
117
+                </div>
118
+                <div class="box">
119
+                    <input type="text" v-model="form.recommendName" />
120
+                </div>
121
+            </section>
122
+            <section class="form-item">
123
+                <div class="label">
124
+                    邀请码:
125
+                </div>
126
+                <div class="box">
127
+                    <input type="text" v-model="form.invitedCode" />
128
+                </div>
129
+            </section> -->
17 130
         </div>
18 131
         <div class="btns">
19
-            <div class="btn" @click="saveOk">立即申请</div>
132
+            <div class="btn" @click="saveOk">保存</div>
20 133
         </div>
21 134
     </div>
22 135
 </template>
23 136
 
24 137
 <script>
25 138
 import MyImage from "../../components/image/index";
139
+import DateTimePicker from "../../components/biaofun-datetime-picker/biaofun-datetime-picker";
140
+import easyUpload from "../../components/easy-upload/easy-upload";
141
+
26 142
 export default {
27 143
     name: "",
28
-    components: { MyImage,  },
29
-    // 
144
+    components: { MyImage, DateTimePicker, easyUpload },
145
+    // 数据
30 146
     data() {
31 147
         return {
32 148
             form: {
33 149
                 appName: "",
150
+                mobile: "",
151
+                name: "",
152
+                pickUpAddress: "",
153
+                address: "",
154
+                foodLicense: "",
155
+                businessLicense: "",
156
+                iDCard: "",
157
+                recommendName: "",
158
+                invitedCode: "",
159
+                latitude:'',
160
+                longitude:'',
161
+                province:'',
162
+                city:'',
163
+                county:'',
34 164
             },
165
+            mainImage: [],
166
+            mainImage2: [],
167
+            mainImage3: [],
35 168
             submitLoading: false,
36 169
         };
37 170
     },
38 171
 
39 172
     onLoad(opts) {
173
+        this.getGroupInfo();
40 174
     },
41 175
 
42 176
     onShow() {},
@@ -44,7 +178,74 @@ export default {
44 178
     // 函数
45 179
     methods: {
46 180
 
47
- 
181
+        getGroupInfo(){
182
+            this.api.get('/Group/getGroupInfo',{},{pass:true})
183
+                .then(res=>{
184
+                    if(res.success && res.data){
185
+                        this.form.appName = res.data.shopName || '';
186
+                        this.form.province = res.data.province || '';
187
+                        this.form.city = res.data.city || '';
188
+                        this.form.county = res.data.district || '';
189
+                        this.form.address = res.data.detialAddr || '';
190
+                        this.form.latitude = res.data.latitude || '';
191
+                        this.form.longitude = res.data.longitude || '';
192
+                        if(this.form.province){
193
+                            this.form.pickUpAddress = `${this.form.province}${this.form.city}${this.form.county}`
194
+                        }
195
+                    }
196
+                })
197
+        },
198
+
199
+        mapClick() {
200
+            let self = this;
201
+            // 判断定位权限
202
+            uni.getSetting({
203
+                success: function (res) {
204
+                    if (res.authSetting["scope.userLocation"] === false) {
205
+                        self.fn
206
+                            .showModal({
207
+                                content: "请授权位置信息后使用",
208
+                                showCancel: false,
209
+                            })
210
+                            .then((res) => {
211
+                                uni.openSetting({});
212
+                            });
213
+                    } else {
214
+                        self.userLocation = true;
215
+                        self.chooseLocation();
216
+                    }
217
+                },
218
+            });
219
+        },
220
+
221
+        chooseLocation() {
222
+            let self = this;
223
+            uni.chooseLocation({
224
+                type: "gcj02", //返回可以用于uni.openLocation的经纬度
225
+                success: function (res) {
226
+                    self.form.pickUpAddress = res.address;
227
+                    self.form.province = '';
228
+                    self.form.city = '';
229
+                    self.form.county = '';
230
+                        this.form.latitude = res.latitude.toFixed(6) || '';
231
+                        this.form.longitude = res.longitude.toFixed(6) || '';
232
+                    console.log("定位ok", res);
233
+                },
234
+                fail(e) {
235
+                    console.log("定位no", e);
236
+                },
237
+            });
238
+        },
239
+
240
+        minImgChange(e) {
241
+            this.form.iDCard = e;
242
+        },
243
+        minImgChange2(e) {
244
+            this.form.businessLicense = e[0] || "";
245
+        },
246
+        minImgChange3(e) {
247
+            this.form.foodLicense = e[0] || "";
248
+        },
48 249
         saveOk() {
49 250
             if (this.submitLoading) {
50 251
                 return;
@@ -52,28 +253,47 @@ export default {
52 253
             if (!this.form.appName) {
53 254
                 return this.fn.showToast("请输入店铺名称");
54 255
             }
256
+            if (!this.form.mobile) {
257
+                return this.fn.showToast("请输入联系方式");
258
+            }
259
+            if (!this.form.name) {
260
+                return this.fn.showToast("请输入姓名");
261
+            }
262
+            if (!this.form.pickUpAddress) {
263
+                return this.fn.showToast("请选择提货地址");
264
+            }
265
+            if (!this.form.address) {
266
+                return this.fn.showToast("请输入详细地址");
267
+            }
268
+            // if (!this.form.iDCard) {
269
+            //     return this.fn.showToast("请上传身份证照");
270
+            // }
271
+            // if (this.form.iDCard.length !== 2) {
272
+            //     return this.fn.showToast("请分别上传身份证照正反面");
273
+            // }
274
+            if(this.user.parentInviteCode){
275
+                this.form.invitedCode = this.user.parentInviteCode;
276
+            }
55 277
             this.submitLoading = true;
56 278
             uni.showLoading({
57 279
                 title: "提交中...",
58 280
             });
59
-            // let data = { ...this.form };
281
+            let data = { ...this.form };
60 282
             this.api
61
-                .post("/Shop/Apply", {query:{name:this.form.appName}}, { pass: true })
283
+                .post("/Shop/SubmitApply", data, { pass: true })
62 284
                 .then((res) => {
63 285
                     this.submitLoading = false;
64 286
                     uni.hideLoading();
65 287
                     if (res.success) {
66
-                        this.fn.showToast("申请成功");
67
-                        let user = this.$store.state.user.user;
68
-                        user.storeStatus = 2;
69
-                        this.$store.commit("user/update", {
70
-                            user,
71
-                        });
288
+                        this.fn.showToast("保存成功");
289
+                        this.fn.applyShopsubscribe(res.data);
72 290
                         this.router.back();
73 291
                     } else {
74 292
                         this.fn.showModal({
75 293
                             content:
76
-                                "申请错误:" +
294
+                                "错误码:" +
295
+                                res.code +
296
+                                ",错误信息:" +
77 297
                                 res.message,
78 298
                             showCancel: false,
79 299
                         });
@@ -133,7 +353,6 @@ export default {
133 353
     align-items: center;
134 354
     font-size: px(44);
135 355
     border-top: 1px solid #f1f1f1;
136
-    border-bottom: 1px solid #f1f1f1;
137 356
     &.dis-item {
138 357
         color: #999;
139 358
         background: #f9f9f9;

+ 47 - 93
src/pages/guide/form.vue

@@ -1,29 +1,31 @@
1 1
 <template>
2 2
     <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3 3
         <div class="form-card">
4
-            <!-- <section class="form-item">
4
+            <section class="form-item dis">
5 5
                 <div class="label">
6
-                    <span class="required">*</span>
6
+                    <!-- <span class="required">*</span> -->
7 7
                     店铺名称:
8 8
                 </div>
9 9
                 <div class="box">
10 10
                     <input
11 11
                         type="text"
12
+                        :disabled="true"
12 13
                         v-model="form.appName"
13
-                        placeholder="请填写店铺名称"
14
+                        placeholder=" "
14 15
                     />
15 16
                 </div>
16
-            </section> -->
17
-            <section class="form-item">
17
+            </section>
18
+            <section class="form-item dis">
18 19
                 <div class="label">
19
-                    <span class="required">*</span>
20
+                    <!-- <span class="required">*</span> -->
20 21
                     店长电话:
21 22
                 </div>
22 23
                 <div class="box">
23 24
                     <input
24 25
                         type="text"
26
+                        :disabled="true"
25 27
                         v-model="form.managerTelephone"
26
-                        placeholder="请填写店长电话"
28
+                        placeholder=" "
27 29
                     />
28 30
                 </div>
29 31
             </section>
@@ -93,11 +95,12 @@
93 95
                     店铺通知:
94 96
                 </div>
95 97
                 <div class="box">
96
-                    <input
98
+                    <!-- <input
97 99
                         type="text"
98
-                        v-model="form.shopNotice"
99
-                        placeholder="请填写店铺通知"
100
-                    />
100
+                        
101
+                    /> -->
102
+                    <textarea v-model="form.shopNotice" :maxlength="2048" :auto-height="true"
103
+                        placeholder="请填写店铺通知"></textarea>
101 104
                 </div>
102 105
             </section>
103 106
         </div>
@@ -119,26 +122,13 @@ export default {
119 122
     data() {
120 123
         return {
121 124
             form: {
122
-                appName: "",
123
-                managerTelephone: "",
124
-                name: "",
125
-                pickUpAddress: "",
126
-                address: "",
127
-                foodLicense: "",
128
-                businessLicense: "",
129
-                iDCard: "",
130
-                recommendName: "",
131
-                invitedCode: "",
132
-                latitude:'',
133
-                longitude:'',
134
-                province:'',
135
-                city:'',
136
-                county:'',
125
+                appNmae:'',
126
+                managerTelephone:'',
127
+                startTime:'',
128
+                endTime:'',
137 129
                 logo:'',
138 130
                 shopBanner:'',
139 131
                 shopNotice:'',
140
-                startTime:'',
141
-                endTime:''
142 132
             },
143 133
             mainImage: [],
144 134
             mainImage2: [],
@@ -148,7 +138,7 @@ export default {
148 138
     },
149 139
 
150 140
     onLoad(opts) {
151
-        this.getGroupInfo();
141
+        this.getData();
152 142
     },
153 143
 
154 144
     onShow() {},
@@ -156,74 +146,31 @@ export default {
156 146
     // 函数
157 147
     methods: {
158 148
 
159
-        getGroupInfo(){
160
-            this.api.get('/Group/getGroupInfo',{},{pass:true})
149
+        getData(){
150
+            this.api.get('/Shop/GetInfo',{},{pass:true})
161 151
                 .then(res=>{
162 152
                     if(res.success && res.data){
163
-                        this.form.appName = res.data.shopName || '';
164
-                        this.form.province = res.data.province || '';
165
-                        this.form.city = res.data.city || '';
166
-                        this.form.county = res.data.district || '';
167
-                        this.form.address = res.data.detialAddr || '';
168
-                        this.form.latitude = res.data.latitude || '';
169
-                        this.form.longitude = res.data.longitude || '';
170
-                        if(this.form.province){
171
-                            this.form.pickUpAddress = `${this.form.province}${this.form.city}${this.form.county}`
172
-                        }
153
+                        this.form.appName = res.data.name;
154
+                        this.form.managerTelephone = res.data.managerTelephone;
155
+                    }else{
156
+                          this.fn.showModal({
157
+                            content:res.message,
158
+                            showCancel: false,
159
+                        }).then(res=>{
160
+                            if(res.confirm){
161
+                                this.router.back();
162
+                            }
163
+                        })
173 164
                     }
174 165
                 })
175 166
         },
176 167
 
177
-        mapClick() {
178
-            let self = this;
179
-            // 判断定位权限
180
-            uni.getSetting({
181
-                success: function (res) {
182
-                    if (res.authSetting["scope.userLocation"] === false) {
183
-                        self.fn
184
-                            .showModal({
185
-                                content: "请授权位置信息后使用",
186
-                                showCancel: false,
187
-                            })
188
-                            .then((res) => {
189
-                                uni.openSetting({});
190
-                            });
191
-                    } else {
192
-                        self.userLocation = true;
193
-                        self.chooseLocation();
194
-                    }
195
-                },
196
-            });
197
-        },
198
-
199
-        chooseLocation() {
200
-            let self = this;
201
-            uni.chooseLocation({
202
-                type: "gcj02", //返回可以用于uni.openLocation的经纬度
203
-                success: function (res) {
204
-                    self.form.pickUpAddress = res.address;
205
-                    self.form.province = '';
206
-                    self.form.city = '';
207
-                    self.form.county = '';
208
-                        this.form.latitude = res.latitude.toFixed(6) || '';
209
-                        this.form.longitude = res.longitude.toFixed(6) || '';
210
-                    console.log("定位ok", res);
211
-                },
212
-                fail(e) {
213
-                    console.log("定位no", e);
214
-                },
215
-            });
216
-        },
217
-
218 168
         minImgChange(e) {
219 169
             this.form.logo = e[0] || '';
220 170
         },
221 171
         minImgChange2(e) {
222 172
             this.form.shopBanner = e[0] || "";
223 173
         },
224
-        minImgChange3(e) {
225
-            this.form.foodLicense = e[0] || "";
226
-        },
227 174
         timeChange(e,name){
228 175
             let time = e.detail.value;
229 176
             this.form[name] = time;
@@ -269,13 +216,17 @@ export default {
269 216
                     this.submitLoading = false;
270 217
                     uni.hideLoading();
271 218
                     if (res.success) {
272
-                        this.fn.showToast("保存成功");
273
-                        let user = this.$store.state.user.user;
274
-                        user.storeStatus = 2;
275
-                        this.$store.commit("user/update", {
276
-                            user,
277
-                        });
278
-                        this.router.back();
219
+                        this.fn.showModal({
220
+                            title:'开通成功',
221
+                            content:`恭喜!您的店铺${''}已开通成功。现在设置积分规则后立即使用`,
222
+                            confirmText:'设置积分',
223
+                            showCancel:false,
224
+                            confirmColor:'#02bb00'
225
+                        }).then(res=>{
226
+                            if (res.confirm) {
227
+                                this.router.replace('/pages/manage/points')
228
+                            }
229
+                        })
279 230
                     } else {
280 231
                         this.fn.showModal({
281 232
                             content:
@@ -346,7 +297,7 @@ export default {
346 297
         background: #f9f9f9;
347 298
     }
348 299
     .label {
349
-        width: px(300);
300
+        width: px(340);
350 301
         flex-shrink: 0;
351 302
         color: #999;
352 303
         margin-right: px(10);
@@ -525,4 +476,7 @@ export default {
525 476
         height: px(60);
526 477
     }
527 478
 }
479
+.dis{
480
+    background-color: #f6f6f6;
481
+}
528 482
 </style>

+ 0 - 144
src/pages/guide/index.vue

@@ -1,144 +0,0 @@
1
-<template>
2
-    <div class="page tabbar-page">
3
-        <div v-if="!loading">
4
-            <h2 class="tit1">您还没有开通店铺,无法使用该模块</h2>
5
-            <h1 class="tit2">开通店铺您可以</h1>
6
-            <div class="box">
7
-                <ul class="list">
8
-                    <li>
9
-                        <span class="index">1、</span>
10
-                        在店铺和群内销售您自己的门店的商品
11
-                    </li>
12
-                    <li><span class="index">2、</span> 在群内开启签到送积分</li>
13
-                    <li>
14
-                        <span class="index">3、</span>
15
-                        在群内开启邀请好友入群送积分
16
-                    </li>
17
-                    <li>
18
-                        <span class="index">4、</span>
19
-                        用户群内获取的积分可以在店铺使用
20
-                    </li>
21
-                </ul>
22
-            </div>
23
-            <button class="btn" @click="jump('/pages/guide/form')">
24
-                立即申请
25
-            </button>
26
-        </div>
27
-        <div class="load" v-if="loading">
28
-            <!-- 待审核 -->
29
-            <block v-if="user.storeStatus === 2">
30
-                <h1 class="tit2">提交成功</h1>
31
-                <div class="text">
32
-                    您的店铺开通申请提交成功,在审核通过后,我们将为您开通店铺并通知
33
-                </div>
34
-            </block>
35
-        </div>
36
-        <wyg-bottom-tab ref="tabbar"></wyg-bottom-tab>
37
-    </div>
38
-</template>
39
-
40
-<script>
41
-import MyImage from "../../components/image/index";
42
-import wygBottomTab from "../../components/wyg-bottom-tab/wyg-bottom-tab";
43
-
44
-export default {
45
-    name: "",
46
-    components: { MyImage, wygBottomTab },
47
-    // 数据
48
-    data() {
49
-        return {
50
-            loading: false,
51
-        };
52
-    },
53
-    filters: {},
54
-    onLoad() {},
55
-    async onShow() {
56
-        if (this.user.storeStatus ===2) {
57
-            this.loading = true;
58
-        } else {
59
-            this.loading = false;
60
-        }
61
-        this.$refs.tabbar.setIndex(2);
62
-    },
63
-
64
-    // onPullDownRefresh() {
65
-    //     this.getList();
66
-    // },
67
-
68
-    // 函数
69
-    methods: {},
70
-
71
-    // 数据计算
72
-    computed: {
73
-        user() {
74
-            return this.$store.state.user.user;
75
-        },
76
-    },
77
-
78
-    // 数据监听
79
-    watch: {},
80
-};
81
-</script>
82
-
83
-
84
-<style lang="scss" scoped>
85
-.page {
86
-    padding-bottom: 2rem;
87
-    padding-top: px(250);
88
-    min-height: 100vh;
89
-    background-color: #fff;
90
-}
91
-.btn {
92
-    position: fixed;
93
-    bottom: 3rem;
94
-    left: 0;
95
-    right: 0;
96
-    z-index: 10;
97
-    color: #fff;
98
-    background-color: rgb(0, 188, 38);
99
-    font-size: px(44);
100
-    border-radius: 0;
101
-}
102
-.tit1 {
103
-    font-size: px(48);
104
-    font-weight: bold;
105
-    // color: rgb(0, 188, 38);
106
-    padding-bottom: px(40);
107
-    text-align: center;
108
-}
109
-.tit2 {
110
-    font-size: px(54);
111
-    font-weight: bold;
112
-    // color: rgb(0, 188, 38);
113
-    padding-bottom: px(120);
114
-    text-align: center;
115
-}
116
-.box {
117
-    border: 1px solid rgb(0, 188, 38);
118
-    padding: px(60) px(40);
119
-    margin: 0 px(80);
120
-    li {
121
-        font-size: px(44);
122
-        .index {
123
-            color: red;
124
-        }
125
-    }
126
-    li ~ li {
127
-        padding-top: px(50);
128
-    }
129
-}
130
-.load {
131
-    height: 100%;
132
-    padding-top: px(300);
133
-    .text {
134
-        width: px(700);
135
-        margin: 0 auto;
136
-        line-height: 1.6;
137
-        text-align: center;
138
-        font-size: px(44);
139
-    }
140
-}
141
-.link {
142
-    color: #409eff;
143
-}
144
-</style>

+ 28 - 18
src/pages/index/index.vue

@@ -520,7 +520,7 @@
520 520
         </block>
521 521
 
522 522
         <div class="guide" v-if="showGuide">
523
-            <div v-if="!user.storeStatus">
523
+            <div v-if="storeStatus === -1">
524 524
                 <h2 class="tit1">您还没有开通店铺,无法使用该模块</h2>
525 525
                 <h1 class="tit2">开通店铺您可以</h1>
526 526
                 <div class="box">
@@ -546,14 +546,14 @@
546 546
                     立即申请
547 547
                 </button>
548 548
             </div>
549
-            <div class="load" v-if="user.storeStatus === 2">
549
+            <div class="load" v-if="storeStatus === 2">
550 550
                 <!-- 待审核 -->
551 551
                 <h1 class="tit2">提交成功</h1>
552 552
                 <div class="text">
553 553
                     您的店铺开通申请提交成功,在审核通过后,我们将为您开通店铺并通知
554 554
                 </div>
555 555
             </div>
556
-            <div class="load" v-if="user.storeStatus === 4">
556
+            <div class="load" v-if="storeStatus === 4">
557 557
                 <!-- 未通过 -->
558 558
                 <h1 class="tit2">审核未通过</h1>
559 559
                 <div class="text">
@@ -563,7 +563,7 @@
563 563
                     重新提交
564 564
                 </button>
565 565
             </div>
566
-            <div class="load" v-if="user.storeStatus === 3">
566
+            <div class="load" v-if="storeStatus === 3">
567 567
                 <!-- 审核通过 -->
568 568
                 <div class="success-main">
569 569
                     <h2 class="success-tit1">恭喜您!</h2>
@@ -683,6 +683,7 @@ export default {
683 683
 
684 684
             showGuide: false,
685 685
             agreement:false,
686
+            storeStatus:-1
686 687
         };
687 688
     },
688 689
     filters: {
@@ -790,21 +791,33 @@ export default {
790 791
         self.tab = this.$store.state.common.tabIndex;
791 792
         this.getList();
792 793
         this.$refs.tabbar.setIndex(1);
793
-
794
-        // 判断页面显示
795
-        if (
796
-            this.user.storeStatus === 2 ||
797
-            this.user.storeStatus === 3 ||
798
-            this.user.storeStatus === 4
799
-        ) {
800
-            this.showGuide = true;
801
-        } else {
802
-            this.showGuide = false;
803
-        }
794
+        this.checkStatus();
804 795
     },
805 796
 
806 797
     // 函数
807 798
     methods: {
799
+        checkStatus(){
800
+            /* 
801
+                闭店中 = 0,  // 已开通,店铺未营业
802
+                营业中 = 1,  // 店铺营业中
803
+                待审核 = 2,  // 通过审核后,状态改为闭店中
804
+                待开通 = 3,  // 通过审核,等待开通
805
+                未通过审核 = 4  // 未通过审核
806
+            */
807
+            this.api.get('/Shop/checkStatus')
808
+                .then(res=>{
809
+                    this.storeStatus = res.data;
810
+                            // 判断页面显示
811
+                    if (
812
+                        this.storeStatus === 0 ||
813
+                        this.storeStatus === 1
814
+                    ) {
815
+                        this.showGuide = false;
816
+                    } else {
817
+                        this.showGuide = true;
818
+                    }
819
+                })
820
+        },
808 821
         // 切换导航
809 822
         setTab(index) {
810 823
             const self = this;
@@ -1289,9 +1302,6 @@ export default {
1289 1302
         },
1290 1303
         user() {
1291 1304
             return this.$store.state.user.user;
1292
-            // return {
1293
-            //     storeStatus:4
1294
-            // }
1295 1305
         },
1296 1306
         orderList() {
1297 1307
             return this.list[this.tab].list;

+ 49 - 0
src/pages/manage/index.vue

@@ -45,6 +45,25 @@
45 45
                         ></my-image>
46 46
                         <span class="text">账号设置</span>
47 47
                     </li>
48
+                    <block v-if="storeStatus === 0 || storeStatus === 1">
49
+                        <li class="item" @click="jump('/pages/manage/points')">
50
+                            <my-image
51
+                                class="img"
52
+                                src="/static/icon/points.png"
53
+                            ></my-image>
54
+                            <span class="text">积分设置</span>
55
+                        </li>
56
+                        <li
57
+                            class="item"
58
+                            @click="jump('/pages/manage/set-shop')"
59
+                        >
60
+                            <my-image
61
+                                class="img"
62
+                                src="/static/icon/shop.png"
63
+                            ></my-image>
64
+                            <span class="text">店铺设置</span>
65
+                        </li>
66
+                    </block>
48 67
                 </ul>
49 68
             </block>
50 69
             <ul class="menu" v-if="!showMenu">
@@ -55,6 +74,22 @@
55 74
                     ></my-image>
56 75
                     <span class="text">账号设置</span>
57 76
                 </li>
77
+                <block v-if="storeStatus === 0 || storeStatus === 1">
78
+                    <li class="item" @click="jump('/pages/manage/points')">
79
+                        <my-image
80
+                            class="img"
81
+                            src="/static/icon/points.png"
82
+                        ></my-image>
83
+                        <span class="text">积分设置</span>
84
+                    </li>
85
+                    <li class="item" @click="jump('/pages/manage/set-shop')">
86
+                        <my-image
87
+                            class="img"
88
+                            src="/static/icon/shop.png"
89
+                        ></my-image>
90
+                        <span class="text">店铺设置</span>
91
+                    </li>
92
+                </block>
58 93
             </ul>
59 94
         </div>
60 95
 
@@ -87,6 +122,7 @@ export default {
87 122
             loading: false,
88 123
             showShop: true,
89 124
             showMenu: true,
125
+            storeStatus: -1,
90 126
         };
91 127
     },
92 128
 
@@ -123,9 +159,22 @@ export default {
123 159
         }
124 160
         this.getUserMenu();
125 161
         this.$refs.tabbar.setIndex(2);
162
+        this.checkStatus();
126 163
     },
127 164
     // 函数
128 165
     methods: {
166
+        checkStatus() {
167
+            /* 
168
+                闭店中 = 0,  // 已开通,店铺未营业
169
+                营业中 = 1,  // 店铺营业中
170
+                待审核 = 2,  // 通过审核后,状态改为闭店中
171
+                待开通 = 3,  // 通过审核,等待开通
172
+                未通过审核 = 4  // 未通过审核
173
+            */
174
+            this.api.get("/Shop/checkStatus").then((res) => {
175
+                this.storeStatus = res.data;
176
+            });
177
+        },
129 178
         getUserMenu() {
130 179
             uni.showLoading({
131 180
                 title: "加载中...",

+ 399 - 0
src/pages/manage/points.vue

@@ -0,0 +1,399 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="form-card">
4
+            <section class="form-item">
5
+                <div class="label">开启积分:</div>
6
+                <div class="box">
7
+                    <switch
8
+                        :value="true"
9
+                        :checked="form.enablePoints"
10
+                        @change="switchChange($event, 'enablePoints')"
11
+                    ></switch>
12
+                    <span class="tip">积分现金比:100积分=1元</span>
13
+                </div>
14
+            </section>
15
+            <block v-if="form.enablePoints">
16
+                <section class="form-item">
17
+                    <div class="label">每单最高抵扣比例:</div>
18
+                    <div class="box">
19
+                        <input
20
+                            type="number"
21
+                            v-model="form.pointsMaxProportion"
22
+                            placeholder="数值范围0~100"
23
+                        />
24
+                    </div>
25
+                    <div class="tool">%</div>
26
+                </section>
27
+                <section class="form-item">
28
+                    <div class="label">
29
+                        <!-- <span class="required">*</span> -->
30
+                        群内签到赠积分:
31
+                    </div>
32
+                    <div class="box">
33
+                        <input
34
+                            type="number"
35
+                            v-model="form.groupSignInRewardPoints"
36
+                        />
37
+                    </div>
38
+                </section>
39
+                <section class="form-item">
40
+                    <div class="label">
41
+                        <!-- <span class="required">*</span> -->
42
+                        邀请好友入群赠送积分:
43
+                    </div>
44
+                    <div class="box">
45
+                        <input
46
+                            type="number"
47
+                            v-model="form.inviteFriendRewardPoints"
48
+                        />
49
+                    </div>
50
+                </section>
51
+                <section class="form-item">
52
+                    <div class="label">
53
+                        <!-- <span class="required">*</span> -->
54
+                        下单付款赠积分:
55
+                    </div>
56
+                    <div class="box">
57
+                        <switch
58
+                            :value="true"
59
+                            :checked="form.enabledOrderPayRewardPoints"
60
+                            @change="
61
+                                switchChange(
62
+                                    $event,
63
+                                    'enabledOrderPayRewardPoints'
64
+                                )
65
+                            "
66
+                        ></switch>
67
+                    </div>
68
+                </section>
69
+            </block>
70
+        </div>
71
+        <div class="btns">
72
+            <div class="btn" @click="saveOk">保存</div>
73
+        </div>
74
+    </div>
75
+</template>
76
+
77
+<script>
78
+import MyImage from "../../components/image/index";
79
+
80
+export default {
81
+    name: "",
82
+    components: { MyImage },
83
+    // 数据
84
+    data() {
85
+        return {
86
+            form: {
87
+                enablePoints: true,
88
+                pointsMaxProportion: "",
89
+                groupSignInRewardPoints: "",
90
+                inviteFriendRewardPoints: "",
91
+                enabledOrderPayRewardPoints: false,
92
+            },
93
+            submitLoading: false,
94
+        };
95
+    },
96
+
97
+    onLoad(opts) {
98
+        this.getData();
99
+    },
100
+
101
+    onShow() {},
102
+
103
+    // 函数
104
+    methods: {
105
+        getData() {
106
+            this.api.get("/Shop/GetPoints", {}, { pass: true }).then((res) => {
107
+                if (res.success && res.data) {
108
+                    this.form = { ...res.data };
109
+                    this.form.enablePoints = res.data.enbaled;
110
+                    this.form.pointsMaxProportion =
111
+                        res.data.maxDeductionProportion;
112
+                }
113
+            });
114
+        },
115
+        switchChange(e, name) {
116
+            let v = e.detail.value;
117
+            this.form[name] = v ? true : false;
118
+            this.form = { ...this.form };
119
+        },
120
+        saveOk() {
121
+            if (this.submitLoading) {
122
+                return;
123
+            }
124
+            if (
125
+                (this.form.pointsMaxProportion &&
126
+                    this.form.pointsMaxProportion > 100) ||
127
+                this.form.pointsMaxProportion < 0
128
+            ) {
129
+                this.fn.showToast("每单最高抵扣比例范围为0~100");
130
+                return;
131
+            }
132
+            console.log(this.form);
133
+            this.submitLoading = true;
134
+            uni.showLoading({
135
+                title: "提交中...",
136
+            });
137
+            let data = { ...this.form };
138
+            this.api
139
+                .post("/Shop/SetPoints", data, { pass: true })
140
+                .then((res) => {
141
+                    this.submitLoading = false;
142
+                    uni.hideLoading();
143
+                    if (res.success) {
144
+                        this.fn.showToast("设置成功");
145
+                        this.router.back();
146
+                    } else {
147
+                        this.fn.showModal({
148
+                            title: "设置错误",
149
+                            content: res.message,
150
+                            showCancel: false,
151
+                        });
152
+                    }
153
+                });
154
+        },
155
+    },
156
+
157
+    // 数据计算
158
+    computed: {
159
+        user() {
160
+            return this.$store.state.user.user;
161
+        },
162
+    },
163
+
164
+    // 数据监听
165
+    watch: {},
166
+};
167
+</script>
168
+
169
+
170
+<style lang="scss" scoped>
171
+.page {
172
+    padding-bottom: px(120);
173
+    min-height: 100vh;
174
+    background-color: #fff;
175
+}
176
+.page--iphoneX {
177
+    padding-bottom: px(150);
178
+    .btn {
179
+        padding-bottom: px(30);
180
+        background-color: rgb(0, 188, 38);
181
+    }
182
+}
183
+.form-card {
184
+    background-color: #fff;
185
+    padding: 0 px(30);
186
+    & ~ .form-card {
187
+        margin-top: px(25);
188
+    }
189
+    .head {
190
+        display: flex;
191
+        align-items: center;
192
+        justify-content: space-between;
193
+        height: px(140);
194
+        background-color: #fbfbfb;
195
+        border-bottom: 1px solid #f1f1f1;
196
+        border-top: 1px solid #f1f1f1;
197
+        font-size: px(44);
198
+    }
199
+}
200
+.form-item {
201
+    display: flex;
202
+    min-height: px(140);
203
+    padding: px(30) 0;
204
+    box-sizing: border-box;
205
+    align-items: center;
206
+    font-size: px(44);
207
+    border-top: 1px solid #f1f1f1;
208
+    &.dis-item {
209
+        color: #999;
210
+        background: #f9f9f9;
211
+    }
212
+    .label {
213
+        // width: px(400);
214
+        flex-shrink: 0;
215
+        color: #666;
216
+        margin-right: px(20);
217
+    }
218
+    .box {
219
+        width: 100%;
220
+        position: relative;
221
+        input {
222
+            width: 100%;
223
+        }
224
+    }
225
+    .tool {
226
+        flex-shrink: 0;
227
+        color: #999;
228
+        margin-left: px(10);
229
+    }
230
+    textarea,
231
+    input {
232
+        max-width: 100%;
233
+        width: 100%;
234
+    }
235
+}
236
+.list {
237
+    // min-height: 100vh;
238
+    // background-color: #fff;
239
+    // border-bottom: 1px solid #f1f1f1;
240
+    li {
241
+        padding: px(0) px(35);
242
+        height: px(140);
243
+        line-height: px(140);
244
+        font-size: px(44);
245
+        border-top: 1px solid #f1f1f1;
246
+        display: flex;
247
+        justify-content: space-between;
248
+        align-items: center;
249
+    }
250
+    .tools {
251
+        display: flex;
252
+        align-items: center;
253
+        flex-shrink: 0;
254
+        span {
255
+            display: inline-block;
256
+            border: 1px solid #f1f1f1;
257
+            font-size: px(36);
258
+            height: px(80);
259
+            width: px(120);
260
+            display: flex;
261
+            justify-content: center;
262
+            align-items: center;
263
+            & ~ span {
264
+                margin-left: px(30);
265
+            }
266
+        }
267
+        .remove {
268
+            color: #f00;
269
+        }
270
+    }
271
+}
272
+.btn {
273
+    width: 100%;
274
+    height: px(120);
275
+    background-color: rgb(0, 188, 38);
276
+    color: #fff;
277
+    display: flex;
278
+    align-items: center;
279
+    justify-content: center;
280
+}
281
+.btns {
282
+    position: fixed;
283
+    bottom: 0;
284
+    left: 0;
285
+    right: 0;
286
+    z-index: 100;
287
+}
288
+.layout {
289
+    background-color: #eee;
290
+    color: #666;
291
+}
292
+.add-btn {
293
+    height: px(120);
294
+    color: #333;
295
+    display: flex;
296
+    align-items: center;
297
+    justify-content: center;
298
+    margin: px(50) px(35) 0;
299
+    border: 1px solid #ccc;
300
+    border-radius: px(10);
301
+}
302
+.code-tool {
303
+    display: flex;
304
+    justify-content: flex-start;
305
+    align-items: center;
306
+    .scan-img {
307
+        flex-shrink: 0;
308
+        width: px(80);
309
+        height: px(80);
310
+        /deep/ img {
311
+            width: px(80);
312
+            height: px(80);
313
+        }
314
+    }
315
+    .generate {
316
+        color: #0097d1;
317
+        margin-right: px(30);
318
+        flex-shrink: 0;
319
+    }
320
+}
321
+.required {
322
+    color: #f00;
323
+    font-size: px(44);
324
+    &.hide {
325
+        visibility: hidden;
326
+    }
327
+}
328
+.inp-dis {
329
+    color: #999;
330
+}
331
+
332
+.img-card {
333
+    padding-top: px(30);
334
+    padding-bottom: px(30);
335
+}
336
+.form-img-item {
337
+    .tit {
338
+        padding: px(30);
339
+        font-size: px(44);
340
+    }
341
+}
342
+
343
+.spec-list {
344
+    width: 100%;
345
+    display: flex;
346
+    justify-content: space-between;
347
+    align-items: center;
348
+    li {
349
+        width: 33.333333%;
350
+        font-size: px(40);
351
+        height: px(100);
352
+        border: 1px solid #f1f1f1;
353
+        display: flex;
354
+        align-items: center;
355
+        justify-content: center;
356
+        color: #999;
357
+        & ~ li {
358
+            // border-left: none;
359
+        }
360
+        &.on {
361
+            color: rgb(0, 188, 38);
362
+            border-color: rgb(0, 188, 38);
363
+        }
364
+    }
365
+}
366
+.mo-date {
367
+    margin-top: px(20);
368
+    border-bottom: 1px solid #f1f1f1;
369
+    background: #fbfbfb;
370
+    font-size: px(40);
371
+    padding: px(10);
372
+}
373
+.n-date-box {
374
+    margin-top: px(20);
375
+    font-size: px(40);
376
+}
377
+.n-date {
378
+    border-bottom: 1px solid #f1f1f1;
379
+    background: #fbfbfb;
380
+    padding: 0 px(20);
381
+    display: inline-block;
382
+    width: px(200);
383
+    font-size: px(44);
384
+    vertical-align: bottom;
385
+}
386
+.address-icon {
387
+    /deep/ img {
388
+        width: px(60);
389
+        height: px(60);
390
+    }
391
+}
392
+.dis {
393
+    background-color: #f6f6f6;
394
+}
395
+.tip {
396
+    color: #999;
397
+    margin-left: px(10);
398
+}
399
+</style>

+ 475 - 0
src/pages/manage/set-shop.vue

@@ -0,0 +1,475 @@
1
+<template>
2
+    <div class="page" :class="{ 'page--iphoneX': iphoneX }">
3
+        <div class="form-card">
4
+            <section class="form-item dis">
5
+                <div class="label">
6
+                    <!-- <span class="required">*</span> -->
7
+                    店铺名称:
8
+                </div>
9
+                <div class="box">
10
+                    <input
11
+                        type="text"
12
+                        :disabled="true"
13
+                        v-model="form.appName"
14
+                        placeholder=" "
15
+                    />
16
+                </div>
17
+            </section>
18
+            <section class="form-item dis">
19
+                <div class="label">
20
+                    <!-- <span class="required">*</span> -->
21
+                    店长电话:
22
+                </div>
23
+                <div class="box">
24
+                    <input
25
+                        type="text"
26
+                        :disabled="true"
27
+                        v-model="form.managerTelephone"
28
+                        placeholder=" "
29
+                    />
30
+                </div>
31
+            </section>
32
+            <section class="form-item">
33
+                <div class="label">
34
+                    <span class="required">*</span>
35
+                    营业开始时间:
36
+                </div>
37
+                <div class="box">
38
+                    <picker mode="time" @change="timeChange($event,'startTime')">
39
+                    <input
40
+                        type="text"
41
+                        :disabled="true"
42
+                        v-model="form.startTime"
43
+                        placeholder="请选择"
44
+                    />
45
+                    </picker>
46
+                </div>
47
+            </section>
48
+            <section class="form-item">
49
+                <div class="label">
50
+                    <span class="required">*</span>
51
+                    营业结束时间:
52
+                </div>
53
+                <div class="box">
54
+                    <picker mode="time" @change="timeChange($event,'endTime')">
55
+                    <input
56
+                        type="text"
57
+                        :disabled="true"
58
+                        v-model="form.endTime"
59
+                        placeholder="请选择"
60
+                    />
61
+                    </picker>
62
+                </div>
63
+            </section>
64
+            <section class="form-item">
65
+                <div class="label">
66
+                    <span class="required">*</span>
67
+                    Logo:
68
+                </div>
69
+                <div class="box">
70
+                    <easy-upload
71
+                        :types="'image'"
72
+                        v-model="mainImage"
73
+                        :uploadCount="1"
74
+                        @change="minImgChange"
75
+                    ></easy-upload>
76
+                </div>
77
+            </section>
78
+            <section class="form-item">
79
+                <div class="label">
80
+                    <span class="required">*</span>
81
+                    店铺背景:
82
+                </div>
83
+                <div class="box">
84
+                    <easy-upload
85
+                        :types="'image'"
86
+                        v-model="mainImage2"
87
+                        :uploadCount="1"
88
+                        @change="minImgChange2"
89
+                    ></easy-upload>
90
+                </div>
91
+            </section>
92
+            <section class="form-item">
93
+                <div class="label">
94
+                    
95
+                    店铺通知:
96
+                </div>
97
+                <div class="box">
98
+                    <!-- <input
99
+                        type="text"
100
+                        
101
+                    /> -->
102
+                    <textarea v-model="form.shopNotice" :maxlength="2048" :auto-height="true"
103
+                        placeholder="请填写店铺通知"></textarea>
104
+                </div>
105
+            </section>
106
+        </div>
107
+        <div class="btns">
108
+            <div class="btn" @click="saveOk">保存</div>
109
+        </div>
110
+    </div>
111
+</template>
112
+
113
+<script>
114
+import MyImage from "../../components/image/index";
115
+import DateTimePicker from "../../components/biaofun-datetime-picker/biaofun-datetime-picker";
116
+import easyUpload from "../../components/easy-upload/easy-upload";
117
+
118
+export default {
119
+    name: "",
120
+    components: { MyImage, DateTimePicker, easyUpload },
121
+    // 数据
122
+    data() {
123
+        return {
124
+            form: {
125
+                appName:'',
126
+                managerTelephone:'',
127
+                startTime:'',
128
+                endTime:'',
129
+                logo:'',
130
+                shopBanner:'',
131
+                shopNotice:'',
132
+            },
133
+            mainImage: [],
134
+            mainImage2: [],
135
+            submitLoading: false,
136
+        };
137
+    },
138
+
139
+    onLoad(opts) {
140
+        this.getData();
141
+    },
142
+
143
+    onShow() {},
144
+
145
+    // 函数
146
+    methods: {
147
+        getData(){
148
+            this.api.get('/Shop/GetInfo',{},{pass:true})
149
+                .then(res=>{
150
+                    if(res.success && res.data){
151
+                        this.form.appName = res.data.name;
152
+                        this.form.managerTelephone = res.data.managerTelephone;
153
+                        this.form.startTime = res.data.startTime;
154
+                        this.form.endTime = res.data.endTime;
155
+                        this.form.logo = res.data.logo;
156
+                        this.form.shopBanner = res.data.shopBanner;
157
+                        this.form.shopNotice = res.data.shopNotice;
158
+                        this.mainImage = this.form.logo?[this.form.logo]:[];
159
+                        this.mainImage2 = this.form.shopBanner?[this.form.shopBanner]:[];
160
+                    }else{
161
+                           this.fn.showModal({
162
+                            content:res.message,
163
+                            showCancel: false,
164
+                        }).then(res=>{
165
+                            if(res.confirm){
166
+                                this.router.back();
167
+                            }
168
+                        })
169
+                    }
170
+                })
171
+        },
172
+
173
+        minImgChange(e) {
174
+            this.form.logo = e[0] || '';
175
+        },
176
+        minImgChange2(e) {
177
+            this.form.shopBanner = e[0] || "";
178
+        },
179
+        timeChange(e,name){
180
+            let time = e.detail.value;
181
+            this.form[name] = time;
182
+            // console.log(e,name);
183
+        },
184
+        saveOk() {
185
+            if (this.submitLoading) {
186
+                return;
187
+            }
188
+            if (!this.form.managerTelephone) {
189
+                return this.fn.showToast("请输入店长电话");
190
+            }
191
+            if (!this.form.startTime) {
192
+                return this.fn.showToast("请选择营业开始时间");
193
+            }
194
+            if (!this.form.endTime) {
195
+                return this.fn.showToast("请选择营业结束时间");
196
+            }
197
+            if (!this.form.logo) {
198
+                return this.fn.showToast("请上传logo");
199
+            }
200
+            if (!this.form.shopBanner) {
201
+                return this.fn.showToast("请上传店铺背景");
202
+            }
203
+            // if (!this.form.iDCard) {
204
+            //     return this.fn.showToast("请上传身份证照");
205
+            // }
206
+            // if (this.form.iDCard.length !== 2) {
207
+            //     return this.fn.showToast("请分别上传身份证照正反面");
208
+            // }
209
+            if(this.user.parentInviteCode){
210
+                this.form.invitedCode = this.user.parentInviteCode;
211
+            }
212
+            console.log(this.form);
213
+            this.submitLoading = true;
214
+            uni.showLoading({
215
+                title: "提交中...",
216
+            });
217
+            let data = { ...this.form };
218
+            this.api
219
+                .post("/Shop/Set", data, { pass: true })
220
+                .then((res) => {
221
+                    this.submitLoading = false;
222
+                    uni.hideLoading();
223
+                    if (res.success) {
224
+                        this.fn.showToast("设置成功");
225
+                        this.router.back();
226
+                    } else {
227
+                        this.fn.showModal({
228
+                            title:'设置失败',
229
+                            content:res.message,
230
+                            showCancel: false,
231
+                        });
232
+                    }
233
+                });
234
+        },
235
+    },
236
+
237
+    // 数据计算
238
+    computed: {
239
+        user() {
240
+            return this.$store.state.user.user;
241
+        },
242
+    },
243
+
244
+    // 数据监听
245
+    watch: {},
246
+};
247
+</script>
248
+
249
+
250
+<style lang="scss" scoped>
251
+.page {
252
+    padding-bottom: px(120);
253
+    min-height: 100vh;
254
+    background-color: #fff;
255
+}
256
+.page--iphoneX {
257
+    padding-bottom: px(150);
258
+    .btn {
259
+        padding-bottom: px(30);
260
+        background-color: rgb(0, 188, 38);
261
+    }
262
+}
263
+.form-card {
264
+    background-color: #fff;
265
+    padding: 0 px(30);
266
+    & ~ .form-card {
267
+        margin-top: px(25);
268
+    }
269
+    .head {
270
+        display: flex;
271
+        align-items: center;
272
+        justify-content: space-between;
273
+        height: px(140);
274
+        background-color: #fbfbfb;
275
+        border-bottom: 1px solid #f1f1f1;
276
+        border-top: 1px solid #f1f1f1;
277
+        font-size: px(44);
278
+    }
279
+}
280
+.form-item {
281
+    display: flex;
282
+    min-height: px(140);
283
+    padding: px(30) 0;
284
+    box-sizing: border-box;
285
+    align-items: center;
286
+    font-size: px(44);
287
+    border-top: 1px solid #f1f1f1;
288
+    &.dis-item {
289
+        color: #999;
290
+        background: #f9f9f9;
291
+    }
292
+    .label {
293
+        width: px(340);
294
+        flex-shrink: 0;
295
+        color: #999;
296
+        margin-right: px(10);
297
+    }
298
+    .box {
299
+        width: 100%;
300
+        position: relative;
301
+        input {
302
+            width: 100%;
303
+        }
304
+    }
305
+    .tool {
306
+        flex-shrink: 0;
307
+        color: #999;
308
+        margin-left: px(10);
309
+    }
310
+    textarea,
311
+    input {
312
+        max-width: 100%;
313
+        width: 100%;
314
+    }
315
+}
316
+.list {
317
+    // min-height: 100vh;
318
+    // background-color: #fff;
319
+    // border-bottom: 1px solid #f1f1f1;
320
+    li {
321
+        padding: px(0) px(35);
322
+        height: px(140);
323
+        line-height: px(140);
324
+        font-size: px(44);
325
+        border-top: 1px solid #f1f1f1;
326
+        display: flex;
327
+        justify-content: space-between;
328
+        align-items: center;
329
+    }
330
+    .tools {
331
+        display: flex;
332
+        align-items: center;
333
+        flex-shrink: 0;
334
+        span {
335
+            display: inline-block;
336
+            border: 1px solid #f1f1f1;
337
+            font-size: px(36);
338
+            height: px(80);
339
+            width: px(120);
340
+            display: flex;
341
+            justify-content: center;
342
+            align-items: center;
343
+            & ~ span {
344
+                margin-left: px(30);
345
+            }
346
+        }
347
+        .remove {
348
+            color: #f00;
349
+        }
350
+    }
351
+}
352
+.btn {
353
+    width: 100%;
354
+    height: px(120);
355
+    background-color: rgb(0, 188, 38);
356
+    color: #fff;
357
+    display: flex;
358
+    align-items: center;
359
+    justify-content: center;
360
+}
361
+.btns {
362
+    position: fixed;
363
+    bottom: 0;
364
+    left: 0;
365
+    right: 0;
366
+    z-index: 100;
367
+}
368
+.layout {
369
+    background-color: #eee;
370
+    color: #666;
371
+}
372
+.add-btn {
373
+    height: px(120);
374
+    color: #333;
375
+    display: flex;
376
+    align-items: center;
377
+    justify-content: center;
378
+    margin: px(50) px(35) 0;
379
+    border: 1px solid #ccc;
380
+    border-radius: px(10);
381
+}
382
+.code-tool {
383
+    display: flex;
384
+    justify-content: flex-start;
385
+    align-items: center;
386
+    .scan-img {
387
+        flex-shrink: 0;
388
+        width: px(80);
389
+        height: px(80);
390
+        /deep/ img {
391
+            width: px(80);
392
+            height: px(80);
393
+        }
394
+    }
395
+    .generate {
396
+        color: #0097d1;
397
+        margin-right: px(30);
398
+        flex-shrink: 0;
399
+    }
400
+}
401
+.required {
402
+    color: #f00;
403
+    font-size: px(44);
404
+    &.hide {
405
+        visibility: hidden;
406
+    }
407
+}
408
+.inp-dis {
409
+    color: #999;
410
+}
411
+
412
+.img-card {
413
+    padding-top: px(30);
414
+    padding-bottom: px(30);
415
+}
416
+.form-img-item {
417
+    .tit {
418
+        padding: px(30);
419
+        font-size: px(44);
420
+    }
421
+}
422
+
423
+.spec-list {
424
+    width: 100%;
425
+    display: flex;
426
+    justify-content: space-between;
427
+    align-items: center;
428
+    li {
429
+        width: 33.333333%;
430
+        font-size: px(40);
431
+        height: px(100);
432
+        border: 1px solid #f1f1f1;
433
+        display: flex;
434
+        align-items: center;
435
+        justify-content: center;
436
+        color: #999;
437
+        & ~ li {
438
+            // border-left: none;
439
+        }
440
+        &.on {
441
+            color: rgb(0, 188, 38);
442
+            border-color: rgb(0, 188, 38);
443
+        }
444
+    }
445
+}
446
+.mo-date {
447
+    margin-top: px(20);
448
+    border-bottom: 1px solid #f1f1f1;
449
+    background: #fbfbfb;
450
+    font-size: px(40);
451
+    padding: px(10);
452
+}
453
+.n-date-box {
454
+    margin-top: px(20);
455
+    font-size: px(40);
456
+}
457
+.n-date {
458
+    border-bottom: 1px solid #f1f1f1;
459
+    background: #fbfbfb;
460
+    padding: 0 px(20);
461
+    display: inline-block;
462
+    width: px(200);
463
+    font-size: px(44);
464
+    vertical-align: bottom;
465
+}
466
+.address-icon {
467
+    /deep/ img {
468
+        width: px(60);
469
+        height: px(60);
470
+    }
471
+}
472
+.dis{
473
+    background-color: #f6f6f6;
474
+}
475
+</style>

BIN
src/static/icon/points.png


BIN
src/static/icon/shop.png