浏览代码

配送设置

cr 4 年之前
父节点
当前提交
cfeb3bf8aa

+ 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) {

+ 365 - 0
src/components/uni-steps/uni-steps.vue

@@ -0,0 +1,365 @@
1
+<template>
2
+    <view class="uni-steps">
3
+        <view
4
+            :class="[
5
+                direction === 'column' ? 'uni-steps__column' : 'uni-steps__row',
6
+            ]"
7
+        >
8
+            <view
9
+                :class="[
10
+                    direction === 'column'
11
+                        ? 'uni-steps__column-text-container'
12
+                        : 'uni-steps__row-text-container',
13
+                ]"
14
+            >
15
+                <view
16
+                    v-for="(item, index) in options"
17
+                    :key="index"
18
+                    :class="[
19
+                        direction === 'column'
20
+                            ? 'uni-steps__column-text'
21
+                            : 'uni-steps__row-text',
22
+                    ]"
23
+                >
24
+                    <text
25
+                        :style="{
26
+                            color:
27
+                                index <= active ? activeColor : deactiveColor,
28
+                        }"
29
+                        :class="[
30
+                            direction === 'column'
31
+                                ? 'uni-steps__column-title'
32
+                                : 'uni-steps__row-title',
33
+                        ]"
34
+                        >{{ item.title }}</text
35
+                    >
36
+                    <text
37
+                        :style="{
38
+                            color:
39
+                                index <= active ? activeColor : deactiveColor,
40
+                        }"
41
+                        :class="[
42
+                            direction === 'column'
43
+                                ? 'uni-steps__column-desc'
44
+                                : 'uni-steps__row-desc',
45
+                        ]"
46
+                        >{{ item.desc }}</text
47
+                    >
48
+                </view>
49
+            </view>
50
+            <view
51
+                :class="[
52
+                    direction === 'column'
53
+                        ? 'uni-steps__column-container'
54
+                        : 'uni-steps__row-container',
55
+                ]"
56
+            >
57
+                <view
58
+                    :class="[
59
+                        direction === 'column'
60
+                            ? 'uni-steps__column-line-item'
61
+                            : 'uni-steps__row-line-item',
62
+                    ]"
63
+                    v-for="(item, index) in options"
64
+                    :key="index"
65
+                >
66
+                    <view
67
+                        :class="[
68
+                            direction === 'column'
69
+                                ? 'uni-steps__column-line'
70
+                                : 'uni-steps__row-line',
71
+                            direction === 'column'
72
+                                ? 'uni-steps__column-line--before'
73
+                                : 'uni-steps__row-line--before',
74
+                        ]"
75
+                        :style="{
76
+                            backgroundColor:
77
+                                index <= active && index !== 0
78
+                                    ? activeColor
79
+                                    : index === 0
80
+                                    ? 'transparent'
81
+                                    : deactiveColor,
82
+                        }"
83
+                    ></view>
84
+                    <view
85
+                        :class="[
86
+                            direction === 'column'
87
+                                ? 'uni-steps__column-check'
88
+                                : 'uni-steps__row-check',
89
+                        ]"
90
+                        v-if="index === active"
91
+                    >
92
+                        <uni-icons
93
+                            :color="activeColor"
94
+                            type="checkbox-filled"
95
+                            size="14"
96
+                        ></uni-icons>
97
+                    </view>
98
+                    <view
99
+                        :class="[
100
+                            direction === 'column'
101
+                                ? 'uni-steps__column-circle'
102
+                                : 'uni-steps__row-circle',
103
+                        ]"
104
+                        v-else
105
+                        :style="{
106
+                            backgroundColor:
107
+                                index < active ? activeColor : deactiveColor,
108
+                        }"
109
+                    ></view>
110
+                    <view
111
+                        :class="[
112
+                            direction === 'column'
113
+                                ? 'uni-steps__column-line'
114
+                                : 'uni-steps__row-line',
115
+                            direction === 'column'
116
+                                ? 'uni-steps__column-line--after'
117
+                                : 'uni-steps__row-line--after',
118
+                        ]"
119
+                        :style="{
120
+                            backgroundColor:
121
+                                index < active && index !== options.length - 1
122
+                                    ? activeColor
123
+                                    : index === options.length - 1
124
+                                    ? 'transparent'
125
+                                    : deactiveColor,
126
+                        }"
127
+                    ></view>
128
+                </view>
129
+            </view>
130
+        </view>
131
+    </view>
132
+</template>
133
+
134
+<script>
135
+/**
136
+ * Steps 步骤条
137
+ * @description 评分组件
138
+ * @tutorial https://ext.dcloud.net.cn/plugin?id=34
139
+ * @property {Number} active 当前步骤
140
+ * @property {String} direction = [row|column] 当前步骤
141
+ * 	@value row 横向
142
+ * 	@value column 纵向
143
+ * @property {String} activeColor 选中状态的颜色
144
+ * @property {Array} options 数据源,格式为:[{title:'xxx',desc:'xxx'},{title:'xxx',desc:'xxx'}]
145
+ */
146
+
147
+export default {
148
+    name: "UniSteps",
149
+    props: {
150
+        direction: {
151
+            // 排列方向 row column
152
+            type: String,
153
+            default: "row",
154
+        },
155
+        activeColor: {
156
+            // 激活状态颜色
157
+            type: String,
158
+            default: "#1aad19",
159
+        },
160
+        deactiveColor: {
161
+            // 未激活状态颜色
162
+            type: String,
163
+            default: "#999999",
164
+        },
165
+        active: {
166
+            // 当前步骤
167
+            type: Number,
168
+            default: 0,
169
+        },
170
+        options: {
171
+            type: Array,
172
+            default() {
173
+                return [];
174
+            },
175
+        }, // 数据
176
+    },
177
+    data() {
178
+        return {};
179
+    },
180
+};
181
+</script>
182
+
183
+<style lang="scss" scoped>
184
+@import "../../uni.scss";
185
+.uni-steps {
186
+    /* #ifndef APP-NVUE */
187
+    display: flex;
188
+    width: 100%;
189
+    /* #endif */
190
+    /* #ifdef APP-NVUE */
191
+    flex: 1;
192
+    /* #endif */
193
+    flex-direction: column;
194
+}
195
+
196
+.uni-steps__row {
197
+    /* #ifndef APP-NVUE */
198
+    display: flex;
199
+    /* #endif */
200
+    flex-direction: column;
201
+}
202
+
203
+.uni-steps__column {
204
+    /* #ifndef APP-NVUE */
205
+    display: flex;
206
+    /* #endif */
207
+    flex-direction: row-reverse;
208
+}
209
+
210
+.uni-steps__row-text-container {
211
+    /* #ifndef APP-NVUE */
212
+    display: flex;
213
+    /* #endif */
214
+    flex-direction: row;
215
+}
216
+
217
+.uni-steps__column-text-container {
218
+    /* #ifndef APP-NVUE */
219
+    display: flex;
220
+    /* #endif */
221
+    flex-direction: column;
222
+    flex: 1;
223
+}
224
+
225
+.uni-steps__row-text {
226
+    /* #ifndef APP-NVUE */
227
+    display: inline-flex;
228
+    /* #endif */
229
+    flex: 1;
230
+    flex-direction: column;
231
+}
232
+
233
+.uni-steps__column-text {
234
+    padding: 6px 0px;
235
+    border-bottom-style: solid;
236
+    border-bottom-width: 1px;
237
+    border-bottom-color: $uni-border-color;
238
+    /* #ifndef APP-NVUE */
239
+    display: flex;
240
+    /* #endif */
241
+    flex-direction: column;
242
+}
243
+
244
+.uni-steps__row-title {
245
+    font-size: $uni-font-size-base;
246
+    line-height: 16px;
247
+    text-align: center;
248
+}
249
+
250
+.uni-steps__column-title {
251
+    font-size: $uni-font-size-base;
252
+    text-align: left;
253
+    line-height: 18px;
254
+}
255
+
256
+.uni-steps__row-desc {
257
+    font-size: 12px;
258
+    line-height: 14px;
259
+    text-align: center;
260
+}
261
+
262
+.uni-steps__column-desc {
263
+    font-size: $uni-font-size-sm;
264
+    text-align: left;
265
+    line-height: 18px;
266
+}
267
+
268
+.uni-steps__row-container {
269
+    /* #ifndef APP-NVUE */
270
+    display: flex;
271
+    /* #endif */
272
+    flex-direction: row;
273
+}
274
+
275
+.uni-steps__column-container {
276
+    /* #ifndef APP-NVUE */
277
+    display: inline-flex;
278
+    /* #endif */
279
+    width: 30px;
280
+    flex-direction: column;
281
+}
282
+
283
+.uni-steps__row-line-item {
284
+    /* #ifndef APP-NVUE */
285
+    display: inline-flex;
286
+    /* #endif */
287
+    flex-direction: row;
288
+    flex: 1;
289
+    height: 14px;
290
+    line-height: 14px;
291
+    align-items: center;
292
+    justify-content: center;
293
+}
294
+
295
+.uni-steps__column-line-item {
296
+    /* #ifndef APP-NVUE */
297
+    display: flex;
298
+    /* #endif */
299
+    flex-direction: column;
300
+    flex: 1;
301
+    align-items: center;
302
+    justify-content: center;
303
+}
304
+
305
+.uni-steps__row-line {
306
+    flex: 1;
307
+    height: 1px;
308
+    background-color: $uni-text-color-grey;
309
+}
310
+
311
+.uni-steps__column-line {
312
+    width: 1px;
313
+    background-color: $uni-text-color-grey;
314
+}
315
+
316
+.uni-steps__row-line--after {
317
+    transform: translateX(1px);
318
+}
319
+
320
+.uni-steps__column-line--after {
321
+    flex: 1;
322
+    transform: translate(0px, 1px);
323
+}
324
+
325
+.uni-steps__row-line--before {
326
+    transform: translateX(-1px);
327
+}
328
+
329
+.uni-steps__column-line--before {
330
+    height: 6px;
331
+    transform: translate(0px, -1px);
332
+}
333
+
334
+.uni-steps__row-circle {
335
+    width: 5px;
336
+    height: 5px;
337
+    border-radius: 100px;
338
+    background-color: $uni-text-color-grey;
339
+    margin: 0px 3px;
340
+}
341
+
342
+.uni-steps__column-circle {
343
+    width: 5px;
344
+    height: 5px;
345
+    border-radius: 100px;
346
+    background-color: $uni-text-color-grey;
347
+    margin: 4px 0px 5px 0px;
348
+}
349
+
350
+.uni-steps__row-check {
351
+    margin: 0px 6px;
352
+}
353
+
354
+.uni-steps__column-check {
355
+    height: 14px;
356
+    line-height: 14px;
357
+    margin: 2px 0px;
358
+}
359
+.uni-steps__row-check {
360
+    width: 10px;
361
+    height: 10px;
362
+    border-radius: 50%;
363
+    background-color: rgb(0, 188, 38);
364
+}
365
+</style>

+ 27 - 3
src/pages.json

@@ -387,20 +387,44 @@
387 387
         {
388 388
             "path": "pages/custom/webview",
389 389
             "style": {
390
-                "navigationBarTitleText": ""
390
+                "navigationBarTitleText": "协议"
391 391
             }
392 392
         },
393 393
         {
394
-            "path": "pages/manage/points",
394
+            "path": "pages/manage/shop/points",
395 395
             "style": {
396 396
                 "navigationBarTitleText": "设置积分"
397 397
             }
398 398
         },
399 399
         {
400
-            "path": "pages/manage/set-shop",
400
+            "path": "pages/manage/shop/set-shop",
401
+            "style": {
402
+                "navigationBarTitleText": "基础设置"
403
+            }
404
+        },
405
+        {
406
+            "path": "pages/manage/shop/index",
401 407
             "style": {
402 408
                 "navigationBarTitleText": "店铺设置"
403 409
             }
410
+        },
411
+        {
412
+            "path": "pages/manage/shop/delivery",
413
+            "style": {
414
+                "navigationBarTitleText": "配送设置"
415
+            }
416
+        },
417
+        {
418
+            "path": "pages/guide/delivery",
419
+            "style": {
420
+                "navigationBarTitleText": "配送设置"
421
+            }
422
+        },
423
+        {
424
+            "path": "pages/wallet/index",
425
+            "style": {
426
+                "navigationBarTitleText": "提现管理"
427
+            }
404 428
         }
405 429
     ]
406 430
 }

+ 438 - 0
src/pages/guide/delivery.vue

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

+ 16 - 30
src/pages/manage/index.vue

@@ -38,24 +38,10 @@
38 38
                         <my-image class="img" :src="item.icon"></my-image>
39 39
                         <span class="text">{{ item.name }}</span>
40 40
                     </li>
41
-                    <li class="item" @click="jump('/pages/manage/user/index')">
42
-                        <my-image
43
-                            class="img"
44
-                            src="/static/icon/user.png"
45
-                        ></my-image>
46
-                        <span class="text">账号设置</span>
47
-                    </li>
48 41
                     <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 42
                         <li
57 43
                             class="item"
58
-                            @click="jump('/pages/manage/set-shop')"
44
+                            @click="jump('/pages/manage/shop/index')"
59 45
                         >
60 46
                             <my-image
61 47
                                 class="img"
@@ -64,25 +50,18 @@
64 50
                             <span class="text">店铺设置</span>
65 51
                         </li>
66 52
                     </block>
67
-                </ul>
68
-            </block>
69
-            <ul class="menu" v-if="!showMenu">
70
-                <li class="item" @click="jump('/pages/manage/user/index')">
71
-                    <my-image
72
-                        class="img"
73
-                        src="/static/icon/user.png"
74
-                    ></my-image>
75
-                    <span class="text">账号设置</span>
76
-                </li>
77
-                <block v-if="storeStatus === 0 || storeStatus === 1">
78
-                    <li class="item" @click="jump('/pages/manage/points')">
53
+                    <li class="item" @click="jump('/pages/manage/user/index')">
79 54
                         <my-image
80 55
                             class="img"
81
-                            src="/static/icon/points.png"
56
+                            src="/static/icon/user.png"
82 57
                         ></my-image>
83
-                        <span class="text">积分设置</span>
58
+                        <span class="text">账号设置</span>
84 59
                     </li>
85
-                    <li class="item" @click="jump('/pages/manage/set-shop')">
60
+                </ul>
61
+            </block>
62
+            <ul class="menu" v-if="!showMenu">
63
+                <block v-if="storeStatus === 0 || storeStatus === 1">
64
+                    <li class="item" @click="jump('/pages/manage/shop/index')">
86 65
                         <my-image
87 66
                             class="img"
88 67
                             src="/static/icon/shop.png"
@@ -90,6 +69,13 @@
90 69
                         <span class="text">店铺设置</span>
91 70
                     </li>
92 71
                 </block>
72
+                <li class="item" @click="jump('/pages/manage/user/index')">
73
+                    <my-image
74
+                        class="img"
75
+                        src="/static/icon/user.png"
76
+                    ></my-image>
77
+                    <span class="text">账号设置</span>
78
+                </li>
93 79
             </ul>
94 80
         </div>
95 81
 

+ 447 - 0
src/pages/manage/shop/delivery.vue

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

+ 86 - 0
src/pages/manage/shop/index.vue

@@ -0,0 +1,86 @@
1
+<template>
2
+    <div class="page">
3
+        <ul class="list">
4
+            <li class="item" @click="jump('/pages/manage/shop/set-shop')">
5
+                <div class="name">基础设置</div>
6
+                <my-image
7
+                    class="arrow"
8
+                    src="/static/common/arrows_left.png"
9
+                ></my-image>
10
+            </li>
11
+            <li class="item" @click="jump('/pages/manage/shop/delivery')">
12
+                <div class="name">配送设置</div>
13
+                <my-image
14
+                    class="arrow"
15
+                    src="/static/common/arrows_left.png"
16
+                ></my-image>
17
+            </li>
18
+            <li class="item" @click="jump('/pages/manage/shop/points')">
19
+                <div class="name">积分设置</div>
20
+                <my-image
21
+                    class="arrow"
22
+                    src="/static/common/arrows_left.png"
23
+                ></my-image>
24
+            </li>
25
+        </ul>
26
+    </div>
27
+</template>
28
+
29
+<script>
30
+import MyImage from "../../../components/image/index";
31
+export default {
32
+    name: "",
33
+    components: { MyImage },
34
+
35
+    // 数据
36
+    data() {
37
+        return {
38
+            curShop: {},
39
+        };
40
+    },
41
+
42
+    onLoad() {},
43
+    async onShow() {},
44
+    // 函数
45
+    methods: {},
46
+
47
+    // 数据计算
48
+    computed: {
49
+        user() {
50
+            return this.$store.state.user.user;
51
+        },
52
+    },
53
+
54
+    // 数据监听
55
+    watch: {},
56
+};
57
+</script>
58
+
59
+<style lang="scss" scoped>
60
+.page {
61
+    min-height: 100vh;
62
+    background-color: #fff;
63
+}
64
+.list {
65
+    border-top: 1px solid #f1f1f1;
66
+    .item {
67
+        height: px(120);
68
+        padding: 0 px(35);
69
+        font-size: px(44);
70
+        display: flex;
71
+        justify-content: space-between;
72
+        align-items: center;
73
+        border-bottom: 1px solid #f1f1f1;
74
+    }
75
+    .arrow {
76
+        width: px(40);
77
+        height: px(40);
78
+        flex-shrink: 0;
79
+        transform: rotate(180deg);
80
+        /deep/ img {
81
+            width: px(40);
82
+            height: px(40);
83
+        }
84
+    }
85
+}
86
+</style>

+ 2 - 1
src/pages/manage/points.vue

@@ -64,6 +64,7 @@
64 64
                                 )
65 65
                             "
66 66
                         ></switch>
67
+                        <span class="tip">购买每支付1元赠1积分</span>
67 68
                     </div>
68 69
                 </section>
69 70
             </block>
@@ -75,7 +76,7 @@
75 76
 </template>
76 77
 
77 78
 <script>
78
-import MyImage from "../../components/image/index";
79
+import MyImage from "../../../components/image/index";
79 80
 
80 81
 export default {
81 82
     name: "",

+ 5 - 5
src/pages/manage/set-shop.vue

@@ -15,9 +15,9 @@
15 15
                     />
16 16
                 </div>
17 17
             </section>
18
-            <section class="form-item dis">
18
+            <section class="form-item">
19 19
                 <div class="label">
20
-                    <!-- <span class="required">*</span> -->
20
+                    <span class="required">*</span>
21 21
                     店长电话:
22 22
                 </div>
23 23
                 <div class="box">
@@ -111,9 +111,9 @@
111 111
 </template>
112 112
 
113 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";
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 117
 
118 118
 export default {
119 119
     name: "",

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

@@ -0,0 +1,144 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="info card">
4
+            <h1 class="tit">账号信息</h1>
5
+            <ul class="info-list">
6
+                <li class="item">
7
+                    <div class="key">姓名:</div>
8
+                    <div class="value">cr</div>
9
+                </li>
10
+                <li class="item">
11
+                    <div class="key">微信号:</div>
12
+                    <div class="value">wx1503213</div>
13
+                </li>
14
+                <li class="item">
15
+                    <div class="key">银行:</div>
16
+                    <div class="value">招商银行</div>
17
+                </li>
18
+                <li class="item">
19
+                    <div class="key">开户行:</div>
20
+                    <div class="value">北京市xxx</div>
21
+                </li>
22
+                <li class="item">
23
+                    <div class="key">卡号:</div>
24
+                    <div class="value">6225845254521545215</div>
25
+                </li>
26
+            </ul>
27
+        </div>
28
+        <div class="money card">
29
+            <h1 class="tit">可提现金额</h1>
30
+            <div class="money-num">
31
+                <div class="num">¥960.00</div>
32
+                <div class="view">查看账单</div>
33
+            </div>
34
+            <p class="tip">最低提现2元,单日上线20000元</p>
35
+            <div class="input">
36
+                <input type="digit">
37
+            </div>
38
+            <p class="tip tip-color">最低提现2元,单日上线20000元</p>
39
+            <button type="button" class="btn">申请提现</button>
40
+        </div>
41
+        <div class="card record">
42
+            <h1 class="tit">提现记录  共2条</h1>
43
+            <ul class="table">
44
+                <li class="row">
45
+                    <div class="item">
46
+                        申请时间
47
+                    </div>
48
+                    <div class="item">
49
+                        提现方式
50
+                    </div>
51
+                    <div class="item">
52
+                        金额
53
+                    </div>
54
+                    <div class="item">
55
+                        状态
56
+                    </div>
57
+                </li>
58
+                <li class="row">
59
+                    <div class="item">
60
+                        2021/01/01
61
+                    </div>
62
+                    <div class="item">
63
+                        微信
64
+                    </div>
65
+                    <div class="item">
66
+                        100
67
+                    </div>
68
+                    <div class="item">
69
+                        已提交
70
+                    </div>
71
+                </li>
72
+            </ul>
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
+        };
87
+    },
88
+    filters: {},
89
+    onLoad() {},
90
+    async onShow() {
91
+    },
92
+
93
+    // onPullDownRefresh() {
94
+    //     this.getList();
95
+    // },
96
+
97
+    // 函数
98
+    methods: {
99
+
100
+    },
101
+
102
+    // 数据计算
103
+    computed: {
104
+        user() {
105
+            return this.$store.state.user.user;
106
+        },
107
+    },
108
+
109
+    // 数据监听
110
+    watch: {},
111
+};
112
+</script>
113
+
114
+
115
+<style lang="scss" scoped>
116
+.card{
117
+    margin: px(40) px(40);
118
+    border: 1px solid #efefef;
119
+    padding: px(40);
120
+    background-color: #fff;
121
+    .tit{
122
+        font-size: px(44);
123
+        font-weight: bold;
124
+        padding-bottom: px(20);
125
+    }
126
+}
127
+.info{
128
+    .item{
129
+        margin-top: px(20);
130
+        font-size: px(40);
131
+        display: flex;
132
+        align-items: start;
133
+        line-height: px(60);
134
+        .key{
135
+            margin-right: px(20);
136
+            flex-shrink: 0;
137
+            color: #666;
138
+        }
139
+    }
140
+}
141
+.money{
142
+    
143
+}
144
+</style>