浏览代码

我的钱包静态

cr 4 年之前
父节点
当前提交
160b86a34a

+ 1 - 1
src/components/uni-steps/uni-steps.vue

@@ -356,7 +356,7 @@ export default {
356 356
     line-height: 14px;
357 357
     margin: 2px 0px;
358 358
 }
359
-.uni-steps__row-check {
359
+.uni-steps__row-check,.uni-steps__column-check {
360 360
     width: 10px;
361 361
     height: 10px;
362 362
     border-radius: 50%;

+ 18 - 0
src/pages.json

@@ -431,6 +431,24 @@
431 431
             "style": {
432 432
                 "navigationBarTitleText": "提现管理"
433 433
             }
434
+        },
435
+        {
436
+            "path": "pages/wallet/bind",
437
+            "style": {
438
+                "navigationBarTitleText": "绑定提现账号"
439
+            }
440
+        },
441
+        {
442
+            "path": "pages/wallet/detail",
443
+            "style": {
444
+                "navigationBarTitleText": "提现详情"
445
+            }
446
+        },
447
+        {
448
+            "path": "pages/wallet/bill",
449
+            "style": {
450
+                "navigationBarTitleText": "账单记录"
451
+            }
434 452
         }
435 453
     ]
436 454
 }

+ 1 - 2
src/pages/guide/form.vue

@@ -25,7 +25,7 @@
25 25
                     />
26 26
                 </div>
27 27
             </section>
28
-            <section class="form-item dis">
28
+            <section class="form-item ">
29 29
                 <div class="label">
30 30
                     <!-- <span class="required">*</span> -->
31 31
                     店长电话:
@@ -33,7 +33,6 @@
33 33
                 <div class="box">
34 34
                     <input
35 35
                         type="text"
36
-                        :disabled="true"
37 36
                         v-model="form.managerTelephone"
38 37
                         placeholder=" "
39 38
                     />

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

@@ -50,6 +50,13 @@
50 50
                             <span class="text">店铺设置</span>
51 51
                         </li>
52 52
                     </block>
53
+                    <li class="item" @click="jump('/pages/wallet/index')">
54
+                        <my-image
55
+                            class="img"
56
+                            src="/static/icon/money.png"
57
+                        ></my-image>
58
+                        <span class="text">我的钱包</span>
59
+                    </li>
53 60
                     <li class="item" @click="jump('/pages/manage/user/index')">
54 61
                         <my-image
55 62
                             class="img"
@@ -69,6 +76,13 @@
69 76
                         <span class="text">店铺设置</span>
70 77
                     </li>
71 78
                 </block>
79
+                    <li class="item" @click="jump('/pages/wallet/index')">
80
+                        <my-image
81
+                            class="img"
82
+                            src="/static/icon/money.png"
83
+                        ></my-image>
84
+                        <span class="text">我的钱包</span>
85
+                    </li>
72 86
                 <li class="item" @click="jump('/pages/manage/user/index')">
73 87
                     <my-image
74 88
                         class="img"

+ 82 - 0
src/pages/wallet/bill.vue

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

+ 484 - 0
src/pages/wallet/bind.vue

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

+ 73 - 0
src/pages/wallet/detail.vue

@@ -0,0 +1,73 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="card">
4
+            <uni-steps :options="data" direction="column" :active="2"></uni-steps>
5
+        </div>
6
+    </div>
7
+</template>
8
+
9
+<script>
10
+import MyImage from "../../components/image/index";
11
+import uSteps from "../../components/uni-steps/uni-steps";
12
+
13
+export default {
14
+    name: "",
15
+    components: { MyImage, uSteps },
16
+    // 数据
17
+    data() {
18
+        return {
19
+            data: [
20
+                { title: "发起提现", desc: "2018-11-11" },
21
+                { title: "审核通过", desc: "2018-11-12" },
22
+                { title: "打款完成", desc: "2018-11-13" },
23
+                { title: "提现完成", desc: "2018-11-14" },
24
+            ],
25
+        };
26
+    },
27
+    filters: {},
28
+    onLoad() {},
29
+    async onShow() {},
30
+
31
+    // onPullDownRefresh() {
32
+    //     this.getList();
33
+    // },
34
+
35
+    // 函数
36
+    methods: {},
37
+
38
+    // 数据计算
39
+    computed: {
40
+        user() {
41
+            return this.$store.state.user.user;
42
+        },
43
+    },
44
+
45
+    // 数据监听
46
+    watch: {},
47
+};
48
+</script>
49
+
50
+
51
+<style lang="scss" scoped>
52
+.page{
53
+    height: 100vh;
54
+    background-color: #fff;
55
+}
56
+.card {
57
+    // margin: px(40) px(40);
58
+    // border: 1px solid #efefef;
59
+    padding: px(40);
60
+    // background-color: #fff;
61
+    .tit {
62
+        font-size: px(44);
63
+        font-weight: bold;
64
+        padding-bottom: px(20);
65
+    }
66
+}
67
+
68
+.card /deep/ uni-steps{
69
+    .uni-steps__column-text{
70
+        padding: px(40) 0;
71
+    }
72
+}
73
+</style>

+ 64 - 5
src/pages/wallet/index.vue

@@ -29,13 +29,13 @@
29 29
             <h1 class="tit">可提现金额</h1>
30 30
             <div class="money-num">
31 31
                 <div class="num">¥960.00</div>
32
-                <div class="view">查看账单</div>
32
+                <div class="view" @click="jump('/pages/wallet/bill')">查看账单</div>
33 33
             </div>
34 34
             <p class="tip">最低提现2元,单日上线20000元</p>
35 35
             <div class="input">
36
-                <input type="digit">
36
+                <input type="digit" placeholder="¥0">
37 37
             </div>
38
-            <p class="tip tip-color">最低提现2元,单日上线20000元</p>
38
+            <p class="tip tip-color">提现金额超出总金额,请重新填写</p>
39 39
             <button type="button" class="btn">申请提现</button>
40 40
         </div>
41 41
         <div class="card record">
@@ -127,7 +127,7 @@ export default {
127 127
 .info{
128 128
     .item{
129 129
         margin-top: px(20);
130
-        font-size: px(40);
130
+        font-size: px(44);
131 131
         display: flex;
132 132
         align-items: start;
133 133
         line-height: px(60);
@@ -139,6 +139,65 @@ export default {
139 139
     }
140 140
 }
141 141
 .money{
142
-    
142
+    .money-num{
143
+        display: flex;
144
+        align-items: center;
145
+        justify-content: space-between;
146
+        padding: px(20) 0;
147
+        .num{
148
+            font-size: px(56);
149
+            color: red;
150
+        }
151
+        .view{
152
+            width: px(340);
153
+            height: px(88);
154
+            border: 1px solid rgb(0, 188, 38);
155
+            color: rgb(0, 188, 38);
156
+            font-size: px(44);
157
+            text-align: center;
158
+            line-height: px(88);
159
+            border-radius: px(10);
160
+        }
161
+    }
162
+    .input{
163
+        margin: px(30) 0;
164
+        input{
165
+            height: px(100);
166
+            padding: 0 px(20);
167
+            border: 1px solid #ededed;
168
+        }
169
+    }
170
+    .tip{
171
+        font-size: px(40);
172
+        color: #999;
173
+        &.top-color{
174
+            color: rgb(255, 173, 129);
175
+        }
176
+    }
177
+    .btn{
178
+        margin-top: px(40);
179
+        background-color:rgb(0, 188, 38);
180
+        color: #fff;
181
+        border: none;
182
+    }
183
+}
184
+.record{
185
+    .table{
186
+        margin-top: px(30);
187
+        .row{
188
+            display: flex;
189
+            border-right: 1px solid #efefef;
190
+            border-bottom: 1px solid #efefef;
191
+        }
192
+        .item{
193
+            border-left: 1px solid #efefef;
194
+            border-top: 1px solid #efefef;
195
+            width: 25%;
196
+            flex-shrink: 0;
197
+            font-size: px(42);
198
+            // text-align: center;
199
+            padding: px(20);
200
+        }
201
+    }
143 202
 }
144 203
 </style>

二进制
src/static/icon/money.png