cr 4 anos atrás
pai
commit
061de4853f

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

@@ -367,7 +367,7 @@
367 367
                                                 <div class="goods__right">
368 368
                                                     <div class="goods__price">
369 369
                                                         ¥{{
370
-                                                            good.payAmount
370
+                                                            good.price
371 371
                                                                 | minuteToRmb
372 372
                                                         }}
373 373
                                                     </div>

+ 83 - 18
src/pages/manage/cashier/detail.vue

@@ -1,18 +1,16 @@
1 1
 <template>
2 2
     <div class="page">
3 3
         <div class="head">
4
-            <!-- <section class="item">
5
-                <my-image class="img" src=""></my-image>
6
-                0002
7
-            </section>
8 4
             <section class="item">
9
-                <my-image class="img" src=""></my-image>
10
-                非会员
11
-            </section> -->
5
+                <!-- <my-image class="img" src=""></my-image> -->
6
+                订单号: {{ data.tradeNo }}
7
+            </section>
12 8
             <section class="item">
13
-                <my-image class="img" src=""></my-image>
9
+                <!-- <my-image class="img" src=""></my-image> -->
10
+                备注:
14 11
                 {{ data.payRemark }}
15 12
             </section>
13
+            <my-image class="line-img" src="/static/icon/line.jpg"></my-image>
16 14
         </div>
17 15
         <div class="goods">
18 16
             <div class="good-head">
@@ -37,20 +35,20 @@
37 35
             </section>
38 36
             <section class="item">
39 37
                 <div>商品总额</div>
40
-                <div>¥{{ data.amount |  minuteToRmb2}}</div>
38
+                <div>¥{{ data.amount | minuteToRmb2 }}</div>
41 39
             </section>
42
-            <!-- <section class="item">
40
+            <section class="item">
43 41
                 <div>折扣</div>
44
-                <div>¥{{ (data.amount/100)*(data.discount/100) }}</div>
45
-            </section> -->
42
+                <div>-¥{{ (data.amount - data.payAmount) | minuteToRmb2 }}</div>
43
+            </section>
46 44
             <section class="item color">
47 45
                 <div>应付</div>
48
-                <div>¥{{ data.payAmount | minuteToRmb2}}</div>
46
+                <div>¥{{ data.payAmount | minuteToRmb2 }}</div>
49 47
             </section>
50 48
         </div>
51 49
 
52
-        <div class="tool">
53
-
50
+        <div class="tool" v-if="data.status !== 12">
51
+            <span class="btn" @click="reverseSettle">反结账</span>
54 52
         </div>
55 53
     </div>
56 54
 </template>
@@ -68,6 +66,7 @@ export default {
68 66
             pageIndex: 1,
69 67
             pageSize: 20,
70 68
             data: {},
69
+            btnLoading: false,
71 70
         };
72 71
     },
73 72
 
@@ -87,6 +86,39 @@ export default {
87 86
                     this.data = res.data;
88 87
                 });
89 88
         },
89
+
90
+        reverseSettle() {
91
+            if (this.btnLoading) {
92
+                return;
93
+            }
94
+            this.btnLoading = true;
95
+            uni.showLoading({
96
+                title: "提交中...",
97
+                mask: true,
98
+            });
99
+            this.api
100
+                .post(
101
+                    "/order/reverseSettle",
102
+                    {
103
+                        query: true,
104
+                        id: this.data.id,
105
+                    },
106
+                    { pass: true }
107
+                )
108
+                .then((res) => {
109
+                    this.btnLoading = false;
110
+                    uni.hideLoading();
111
+                    if (res.success) {
112
+                        this.fn.showToast("保存成功");
113
+                        this.router.back();
114
+                    } else {
115
+                        this.fn.showModal({
116
+                            content: res.message,
117
+                            showCancel: false,
118
+                        });
119
+                    }
120
+                });
121
+        },
90 122
     },
91 123
 
92 124
     // 数据计算
@@ -104,6 +136,7 @@ export default {
104 136
 <style lang="scss" scoped>
105 137
 .head {
106 138
     background-color: #fff;
139
+    border-bottom: 1px solid #f1f1f1;
107 140
     .item {
108 141
         min-height: px(110);
109 142
         display: flex;
@@ -123,8 +156,8 @@ export default {
123 156
         }
124 157
     }
125 158
 }
126
-.goods{
127
-    margin-top: px(30);
159
+.goods {
160
+    margin-top: px(40);
128 161
     .good-head {
129 162
         display: flex;
130 163
         align-items: center;
@@ -150,7 +183,7 @@ export default {
150 183
     }
151 184
 }
152 185
 .other-info {
153
-    margin-top: px(30);
186
+    margin-top: px(40);
154 187
     background-color: #fff;
155 188
     padding: px(35);
156 189
     .item {
@@ -163,4 +196,36 @@ export default {
163 196
 .color {
164 197
     color: #0c89c9;
165 198
 }
199
+.line-img {
200
+    width: 100%;
201
+    height: px(10);
202
+    /deep/ img {
203
+        width: 100%;
204
+        height: px(10);
205
+    }
206
+}
207
+.tool{
208
+    position: fixed;
209
+    bottom: 0;
210
+    left: 0;
211
+    right: 0;
212
+    height: px(130);
213
+    z-index: 10;
214
+    border-top: 1px solid #f1f1f1;
215
+    display: flex;
216
+    padding: px(35);
217
+    align-items: center;
218
+    justify-content: flex-end;
219
+    background-color: #fff;
220
+    .btn{
221
+        width: px(190);
222
+        height: px(88);
223
+        display: flex;
224
+        align-items: center;
225
+        justify-content: center;
226
+        font-size: px(40);
227
+        border-radius: px(8);
228
+        border: 1px solid #f1f1f1;
229
+    }
230
+}
166 231
 </style>

+ 61 - 12
src/pages/manage/cashier/list.vue

@@ -1,16 +1,25 @@
1 1
 <template>
2 2
     <div class="page">
3
-        <ul class="list">
4
-            <li class="item" v-for="item of dataList" :key="item.id" @click="goDetail(item)">
3
+        <div class="empty" v-if="!dataList || dataList.length === 0">
4
+            无数据
5
+        </div>
6
+        <ul class="list" v-if="dataList && dataList.length">
7
+            <li
8
+                class="item"
9
+                v-for="item of dataList"
10
+                :key="item.id"
11
+                @click="goDetail(item)"
12
+            >
5 13
                 <div class="main">
6 14
                     <div class="trade-no">{{ item.tradeNo }}</div>
7 15
                     <div class="info">
8 16
                         共{{
9 17
                             item.orderItems ? item.orderItems.length : 0
10 18
                         }}件商品
11
-                        <span class="price">{{
12
-                            item.payAmount | minuteToRmb2
13
-                        }}元</span>
19
+
20
+                        <span class="price"
21
+                            >{{ item.payAmount | minuteToRmb2 }}元</span
22
+                        >
14 23
                     </div>
15 24
                     <div class="time">
16 25
                         {{ item.payTime }}
@@ -40,6 +49,7 @@ export default {
40 49
             pageIndex: 1,
41 50
             pageSize: 20,
42 51
             dataList: [],
52
+            dataEnd: false,
43 53
         };
44 54
     },
45 55
 
@@ -47,27 +57,55 @@ export default {
47 57
         this.getList();
48 58
     },
49 59
     async onShow() {},
60
+    onPullDownRefresh() {
61
+        this.getMoreList();
62
+    },
50 63
     // 函数
51 64
     methods: {
52 65
         getList() {
66
+            uni.showLoading({
67
+                title: "提交中...",
68
+                mask: true,
69
+            });
70
+            this.dataEnd = false;
53 71
             this.api
54 72
                 .get("/Order/GetSettleList", {
55 73
                     pageIndex: this.pageIndex,
56 74
                     pageSize: this.pageSize,
57 75
                 })
58 76
                 .then((res) => {
77
+                    uni.hideLoading();
59 78
                     let data = res.data;
60 79
                     this.dataList = res.data.data;
61 80
                 });
62 81
         },
82
+        getMoreList() {
83
+            if(this.dataEnd){
84
+                return;
85
+            }
86
+            this.pageIndex++;
87
+            this.api
88
+                .get("/Order/GetSettleList", {
89
+                    pageIndex: this.pageIndex,
90
+                    pageSize: this.pageSize,
91
+                })
92
+                .then((res) => {
93
+                    let data = res.data;
94
+                    if (data.length === 0) {
95
+                        this.dataEnd = true;
96
+                    } else {
97
+                        this.dataList = [this.dataList, ...data];
98
+                    }
99
+                });
100
+        },
63 101
 
64
-        goDetail(item){
102
+        goDetail(item) {
65 103
             this.router.push({
66
-                path:'/pages/manage/cashier/detail',
67
-                query:{
68
-                    orderNo:item.tradeNo
69
-                }
70
-            })
104
+                path: "/pages/manage/cashier/detail",
105
+                query: {
106
+                    orderNo: item.tradeNo,
107
+                },
108
+            });
71 109
         },
72 110
     },
73 111
 
@@ -84,6 +122,10 @@ export default {
84 122
 </script>
85 123
 
86 124
 <style lang="scss" scoped>
125
+.page {
126
+    min-height: 100vh;
127
+    background-color: #fff;
128
+}
87 129
 .list {
88 130
     .item {
89 131
         padding: px(30) px(35);
@@ -104,7 +146,8 @@ export default {
104 146
         color: #999;
105 147
     }
106 148
     .price {
107
-        margin-left: px(10);
149
+        margin-left: px(20);
150
+        display: inline-block;
108 151
         color: #0099cb;
109 152
     }
110 153
     .time {
@@ -125,4 +168,10 @@ export default {
125 168
         }
126 169
     }
127 170
 }
171
+.empty {
172
+    padding: px(35);
173
+    text-align: center;
174
+    font-size: px(44);
175
+    color: #666;
176
+}
128 177
 </style>

+ 83 - 16
src/pages/manage/cashier/settlement.vue

@@ -29,17 +29,16 @@
29 29
                     </span>
30 30
                 </div>
31 31
             </div>
32
-            <div class="info" v-if="surplusPrice > 0">
32
+            <div class="info" v-if="surplusPrice > 0 && !orderId">
33 33
                 <div class="tools">
34 34
                     <span @click="discountShow">折扣</span>
35
-                    <!-- <span>优惠券</span> -->
36 35
                 </div>
37 36
                 <div class="money">
38 37
                     <span>应收(元)</span>
39 38
                     <span class="price"> {{ surplusPrice }} </span>
40 39
                 </div>
41 40
             </div>
42
-            <div class="success" v-if="surplusPrice <= 0">
41
+            <div class="success" v-if="surplusPrice <= 0 && !orderId">
43 42
                 <my-image
44 43
                     v-if="surplusPrice === 0"
45 44
                     class="img"
@@ -54,17 +53,27 @@
54 53
                     {{ successText }}
55 54
                 </div>
56 55
             </div>
56
+            <div class="success" v-if="orderId && payErr">
57
+                <my-image class="img" src="/static/icon/error.png"></my-image>
58
+                <div class="text err-text">结算成功,支付失败,请重新支付</div>
59
+            </div>
60
+        </div>
61
+        <div
62
+            class="submit-btn"
63
+            v-if="!orderId && surplusPrice <= 0"
64
+            @click="submit"
65
+        >
66
+            结算
57 67
         </div>
58 68
 
59
-        <div class="submit-btn" v-if="surplusPrice <= 0" @click="submit">
60
-            完成支付
69
+        <div class="submit-btn" v-if="orderId && payErr" @click="seanCode">
70
+            继续支付
61 71
         </div>
62 72
 
63 73
         <ul class="pay-list" v-if="surplusPrice > 0">
64 74
             <li class="item" @click="showPay('1')">现金</li>
65 75
             <li class="item" @click="showPay('2')">刷卡</li>
66
-            <li class="item" @click="showPay('3')">支付宝</li>
67
-            <li class="item" @click="showPay('4')">微信</li>
76
+            <li class="item" @click="showPay('3')">扫码</li>
68 77
         </ul>
69 78
 
70 79
         <div class="modal" v-if="cashVisibile">
@@ -187,9 +196,7 @@ export default {
187 196
                 case "2":
188 197
                     return "刷卡";
189 198
                 case "3":
190
-                    return "支付宝";
191
-                case "4":
192
-                    return "微信";
199
+                    return "扫码";
193 200
             }
194 201
         },
195 202
     },
@@ -206,8 +213,7 @@ export default {
206 213
             payType: {
207 214
                 1: "", // 现金
208 215
                 2: "", // 刷卡
209
-                3: "", // 支付宝
210
-                4: "", // 微信
216
+                3: "", // 扫码
211 217
             },
212 218
             // 折扣
213 219
             discountList: [], // 折扣列表
@@ -218,6 +224,8 @@ export default {
218 224
                 value: "",
219 225
             },
220 226
             btnLoading: false,
227
+            orderId: "",
228
+            payErr: false,
221 229
         };
222 230
     },
223 231
 
@@ -348,6 +356,8 @@ export default {
348 356
             this.discount.show = false;
349 357
             this.discount.ratio = "";
350 358
             this.discount.value = "";
359
+            this.orderId = "";
360
+            this.payErr = false;
351 361
         },
352 362
         // 折扣显示
353 363
         discountShow() {
@@ -385,7 +395,7 @@ export default {
385 395
                 discount: this.discount.show
386 396
                     ? Number(this.discount.ratio)
387 397
                     : 100, // 折扣
388
-                payMethod: this.curPayType, // 支付方式,1-现金支付,2-刷卡支付,3-支付宝支付,4-微信支付
398
+                payMethod: Number(this.curPayType), // 支付方式,1-现金支付,2-刷卡支付,3-扫码
389 399
                 orderItems: [],
390 400
             };
391 401
             for (let item of this.goods) {
@@ -409,8 +419,18 @@ export default {
409 419
                     this.btnLoading = false;
410 420
                     uni.hideLoading();
411 421
                     if (res.success) {
412
-                        this.fn.showToast("保存成功");
413
-                        this.router.back();
422
+                        // 微信 支付宝支付
423
+                        if (
424
+                            this.curPayType === "4" ||
425
+                            this.curPayType === "3"
426
+                        ) {
427
+                            this.orderId = res.data;
428
+                            console.log(this.orderId);
429
+                            this.seanCode();
430
+                        } else {
431
+                            this.fn.showToast("保存成功");
432
+                            this.router.back();
433
+                        }
414 434
                     } else {
415 435
                         this.fn.showModal({
416 436
                             content: res.message,
@@ -419,6 +439,50 @@ export default {
419 439
                     }
420 440
                 });
421 441
         },
442
+
443
+        seanCode() {
444
+            let self = this;
445
+            uni.scanCode({
446
+                scanType: "barCode",
447
+                success(res) {
448
+                    console.log("扫码", res);
449
+                    if (res.scanType === "CODE_128") {
450
+                        uni.showLoading({
451
+                            title: "支付中...",
452
+                            mask: true,
453
+                        });
454
+                        self.api
455
+                            .post(
456
+                                "/order/BarcodePay",
457
+                                {
458
+                                    query: true,
459
+                                    orderId: self.orderId,
460
+                                    barcode: res.result,
461
+                                },
462
+                                { pass: true }
463
+                            )
464
+                            .then((res) => {
465
+                                uni.hideLoading();
466
+                                if (res.success) {
467
+                                    self.fn.showToast("支付成功");
468
+                                    self.router.back();
469
+                                } else {
470
+                                    self.fn.showToast("支付失败");
471
+                                    self.payErr = true;
472
+                                }
473
+                            });
474
+                    } else {
475
+                        self.fn.showToast("扫码失败");
476
+                        self.payErr = true;
477
+                    }
478
+                },
479
+                fail(res) {
480
+                    self.fn.showToast("扫码失败");
481
+                    console.log("扫码失败:", res);
482
+                    self.payErr = true;
483
+                },
484
+            });
485
+        },
422 486
     },
423 487
 
424 488
     // 数据计算
@@ -570,7 +634,7 @@ export default {
570 634
     align-items: center;
571 635
     padding: 0 px(35);
572 636
     .item {
573
-        width: 24%;
637
+        width: 32%;
574 638
         height: px(150);
575 639
         border-radius: px(8);
576 640
         background-color: #fff;
@@ -728,4 +792,7 @@ export default {
728 792
         background-color: #fff;
729 793
     }
730 794
 }
795
+.err-text {
796
+    color: #f00 !important;
797
+}
731 798
 </style>

BIN
src/static/icon/error.png


BIN
src/static/icon/line.jpg