cr %!s(int64=4) %!d(string=hai) anos
pai
achega
c11891a34e

+ 2 - 2
.env

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = develop
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = http://localhost:8076
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:8076
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.develop

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = http://localhost:8076
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:8076
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.production

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
10
+VUE_APP_API_BASE_URL = http://localhost:8076
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
16
+VUE_APP_IMAGE_BASE_URL = http://localhost:8076
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 1 - 0
src/common/store/common.js

@@ -14,6 +14,7 @@ const module = {
14 14
         curOrder: null,   // index/refund 售后临时保存
15 15
         disparityData:null, // index/disparity 售后临时保存
16 16
         couponData:null, // manage/coupon/form 优惠券临时保存
17
+        cashierGoodList:null, // manage/cashier/index 收银临时保存
17 18
     },
18 19
 
19 20
     // 同步方法

+ 406 - 0
src/components/keyboard-package/keyboard-package.vue

@@ -0,0 +1,406 @@
1
+<template>
2
+    <view>
3
+        <view class="keyboardbox">
4
+            <view class="numkeyboard" v-if="type === 'number'">
5
+                <view class="num-area">
6
+                    <view
7
+                        class="row"
8
+                        v-for="(item, index) in numKeybordList"
9
+                        :key="index"
10
+                    >
11
+                        <view
12
+                            :class="[
13
+                                'item',
14
+                                ite === 0 ? 'z' : '',
15
+                                disableDot && ite === '.' ? 'disabled' : '',
16
+                            ]"
17
+                            v-for="(ite, idx) in item"
18
+                            hover-class="active"
19
+                            :hover-start-time="0"
20
+                            :hover-stay-time="5"
21
+                            :key="idx"
22
+                            @tap="input(ite)"
23
+                            >{{ ite }}</view
24
+                        >
25
+                    </view>
26
+                </view>
27
+                <view class="btn-area">
28
+                    <view
29
+                        :class="['item', 'del']"
30
+                        hover-class="active"
31
+                        :hover-start-time="0"
32
+                        :hover-stay-time="5"
33
+                        @tap="deleteVal"
34
+                    >
35
+                        删除
36
+                    </view>
37
+                    <view
38
+                        class="confirem item"
39
+                        hover-class="active"
40
+                        :hover-start-time="0"
41
+                        :hover-stay-time="5"
42
+                        @tap="confirm"
43
+                    >
44
+                        完成
45
+                    </view>
46
+                </view>
47
+            </view>
48
+
49
+            <view class="numkeyboard" v-if="type === 'idCard'">
50
+                <view class="num-area">
51
+                    <view
52
+                        class="row"
53
+                        v-for="(item, index) in idCardList"
54
+                        :key="index"
55
+                    >
56
+                        <view
57
+                            :class="[
58
+                                'item',
59
+                                ite === 0 ? 'z' : '',
60
+                                disableDot && ite === '.' ? 'disabled' : '',
61
+                            ]"
62
+                            v-for="(ite, idx) in item"
63
+                            hover-class="active"
64
+                            :hover-start-time="0"
65
+                            :hover-stay-time="5"
66
+                            :key="idx"
67
+                            @tap="input(ite)"
68
+                            >{{ ite }}</view
69
+                        >
70
+                    </view>
71
+                </view>
72
+                <view class="btn-area">
73
+                    <view
74
+                        :class="['item', 'del']"
75
+                        hover-class="active"
76
+                        :hover-start-time="0"
77
+                        :hover-stay-time="5"
78
+                        @tap="deleteVal"
79
+                    >
80
+                        删除
81
+                    </view>
82
+                    <view
83
+                        class="confirem item"
84
+                        hover-class="active"
85
+                        :hover-start-time="0"
86
+                        :hover-stay-time="5"
87
+                        @tap="confirm"
88
+                    >
89
+                        完成
90
+                    </view>
91
+                </view>
92
+            </view>
93
+
94
+            <view class="platenumber" v-if="type === 'plateNumber'">
95
+                <view class="header">
96
+                    <view
97
+                        @tap="active = active === 1 ? 2 : 1"
98
+                        hover-class="active"
99
+                        :hover-start-time="0"
100
+                        :hover-stay-time="5"
101
+                        >{{ active === 1 ? "地区" : "车牌号" }}</view
102
+                    >
103
+                    <view
104
+                        hover-class="active"
105
+                        :hover-start-time="0"
106
+                        :hover-stay-time="5"
107
+                        @tap="confirm"
108
+                        >完成</view
109
+                    >
110
+                </view>
111
+                <view class="main">
112
+                    <view class="normal" v-show="active === 1">
113
+                        <view
114
+                            class="row"
115
+                            v-for="(item, index) in EngKeyBoardList"
116
+                            :key="index"
117
+                        >
118
+                            <view
119
+                                class="item"
120
+                                v-for="(ite, idx) in item"
121
+                                :key="idx"
122
+                                hover-class="active"
123
+                                :hover-start-time="0"
124
+                                :hover-stay-time="5"
125
+                                @tap="input(ite)"
126
+                            >
127
+                                {{ ite }}
128
+                            </view>
129
+                            <view
130
+                                class="item img"
131
+                                v-if="index === EngKeyBoardList.length - 1"
132
+                                hover-class="active"
133
+                                :hover-start-time="0"
134
+                                :hover-stay-time="5"
135
+                                @tap="deleteVal"
136
+                            >
137
+                                <image src="/static/delete.png" mode=""></image>
138
+                            </view>
139
+                        </view>
140
+                    </view>
141
+                    <view class="area" v-show="active === 2">
142
+                        <view
143
+                            class="row"
144
+                            v-for="(item, index) in areaList"
145
+                            :key="index"
146
+                        >
147
+                            <view
148
+                                class="item"
149
+                                v-for="(ite, idx) in item"
150
+                                :key="idx"
151
+                                hover-class="active"
152
+                                :hover-start-time="0"
153
+                                :hover-stay-time="5"
154
+                                @tap="input(ite)"
155
+                            >
156
+                                {{ ite }}
157
+                            </view>
158
+                            <view
159
+                                class="item img"
160
+                                v-if="index === EngKeyBoardList.length - 1"
161
+                                hover-class="active"
162
+                                :hover-start-time="0"
163
+                                :hover-stay-time="5"
164
+                                @tap="deleteVal"
165
+                            >
166
+                                <image src="/static/delete.png" mode=""></image>
167
+                            </view>
168
+                        </view>
169
+                    </view>
170
+                </view>
171
+            </view>
172
+        </view>
173
+        <view class="safe-area" v-if="safeAreaInsetBottom"></view>
174
+    </view>
175
+</template>
176
+
177
+<script>
178
+import uniPopup from "@/components/uni-popup/uni-popup.vue";
179
+export default {
180
+    components: {
181
+        uniPopup,
182
+    },
183
+    props: {
184
+        type: {
185
+            type: String,
186
+            default: "number",
187
+        },
188
+        safeAreaInsetBottom: {
189
+            //是否设置安全区
190
+            type: Boolean,
191
+            default: false,
192
+        },
193
+        disableDot: {
194
+            //数字键盘是否禁止点击.仅type为number生效
195
+            type: Boolean,
196
+            default: false,
197
+        },
198
+    },
199
+    data() {
200
+        return {
201
+            numKeybordList: [
202
+                [1, 2, 3],
203
+                [4, 5, 6],
204
+                [7, 8, 9],
205
+                [0, "."],
206
+            ],
207
+            idCardList: [
208
+                [1, 2, 3],
209
+                [4, 5, 6],
210
+                [7, 8, 9],
211
+                [0, "X"],
212
+            ],
213
+            areaList: [
214
+                ["京", "沪", "粤", "津", "冀", "豫", "云", "辽", "黑", "湘"],
215
+                ["皖", "鲁", "苏", "浙", "赣", "鄂", "桂", "甘", "晋", "陕"],
216
+                ["蒙", "吉", "闽", "贵", "渝", "川", "青", "琼", "宁"],
217
+                ["藏", "新", "使", "港", "澳", "学"],
218
+            ],
219
+            EngKeyBoardList: [
220
+                [1, 2, 3, 4, 5, 6, 7, 8, 9, 0],
221
+                ["Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P"],
222
+                ["A", "S", "D", "F", "G", "H", "J", "K", "L"],
223
+                ["Z", "X", "C", "V", "B", "N", "M"],
224
+            ],
225
+            active: 2,
226
+        };
227
+    },
228
+    created() {},
229
+    methods: {
230
+        open() {
231
+            this.$refs.keyboardPackage.open();
232
+        },
233
+        confirm() {
234
+            // this.close();
235
+            this.$emit("onConfirm");
236
+        },
237
+        deleteVal() {
238
+            this.$emit("onDelete");
239
+        },
240
+        input(val) {
241
+            if (val === "." && this.disableDot) return;
242
+            this.$emit("onInput", val);
243
+            if (this.active === 2) {
244
+                this.active = 1;
245
+            }
246
+        },
247
+        close() {
248
+            this.$refs.keyboardPackage.close();
249
+        },
250
+    },
251
+};
252
+</script>
253
+
254
+<style lang="scss" scoped>
255
+.keyboardbox {
256
+    background-color: #ffffff;
257
+
258
+    .numkeyboard {
259
+        height: 432rpx;
260
+        display: flex;
261
+        background-color: #ebedf0;
262
+
263
+        .btn-area {
264
+            width: 180rpx;
265
+            height: 100%;
266
+            display: flex;
267
+            flex-direction: column;
268
+
269
+            .item {
270
+                width: 100%;
271
+                display: flex;
272
+                justify-content: center;
273
+                align-items: center;
274
+                flex-grow: 1;
275
+            }
276
+
277
+            .del {
278
+                background-color: #ebedf0;
279
+                color: #333;
280
+
281
+                &.active {
282
+                    background-color: #f1f3f5;
283
+                }
284
+            }
285
+
286
+            .confirem {
287
+                background-color: #1989fa;
288
+                color: #ffffff;
289
+
290
+                &.active {
291
+                    background-color: #0570db;
292
+                }
293
+            }
294
+        }
295
+
296
+        .num-area {
297
+            flex-grow: 1;
298
+            display: flex;
299
+            flex-wrap: wrap;
300
+
301
+            .row {
302
+                width: 100%;
303
+                height: 25%;
304
+                display: flex;
305
+                margin-top: 1px;
306
+
307
+                .item {
308
+                    flex-grow: 1;
309
+                    height: 100%;
310
+                    display: flex;
311
+                    justify-content: center;
312
+                    align-items: center;
313
+                    background-color: #ffffff;
314
+                    border-right: 1px solid #ebedf0;
315
+                    width: 33.33%;
316
+
317
+                    &.active {
318
+                        background-color: #ebedf0;
319
+                    }
320
+
321
+                    &.z {
322
+                        flex-grow: 2;
323
+                        width: 66.66%;
324
+                    }
325
+
326
+                    &.disabled {
327
+                        background: #ffffff;
328
+                        color: #b9b9b9;
329
+                    }
330
+                }
331
+            }
332
+        }
333
+    }
334
+}
335
+
336
+.safe-area {
337
+    padding-bottom: 0rpx;
338
+    padding-bottom: constant(safe-area-inset-bottom);
339
+    padding-bottom: env(safe-area-inset-bottom);
340
+}
341
+
342
+.platenumber {
343
+    background-color: #f5f5f5;
344
+
345
+    .header {
346
+        height: 76rpx;
347
+        background-color: #ffffff;
348
+        display: flex;
349
+        justify-content: space-between;
350
+        align-items: center;
351
+        font-size: 28rpx;
352
+        border-top: 1px solid #f5f5f5;
353
+
354
+        & > view {
355
+            padding: 0 45rpx;
356
+            color: #00a7ea;
357
+            height: 100%;
358
+            display: flex;
359
+            align-items: center;
360
+            &.active {
361
+                background-color: #ebedf0;
362
+            }
363
+        }
364
+    }
365
+
366
+    .main {
367
+        height: 435rpx;
368
+
369
+        .row {
370
+            margin: 13rpx 0;
371
+            display: flex;
372
+            justify-content: center;
373
+            align-items: center;
374
+
375
+            .item {
376
+                width: 56rpx;
377
+                height: 94rpx;
378
+                display: flex;
379
+                justify-content: center;
380
+                align-items: center;
381
+                background-color: #ffffff;
382
+                border-radius: 6rpx;
383
+                margin: 0 7rpx;
384
+                font-size: 24rpx;
385
+                &.active {
386
+                    background-color: #ebedf0;
387
+                }
388
+
389
+                &.img {
390
+                    background-color: #c2cacc;
391
+                    width: 94rpx;
392
+
393
+                    &.active {
394
+                        background-color: #ddd;
395
+                    }
396
+
397
+                    & > image {
398
+                        width: 49rpx;
399
+                        height: 48rpx;
400
+                    }
401
+                }
402
+            }
403
+        }
404
+    }
405
+}
406
+</style>

+ 111 - 0
src/components/password-input/password-input.vue

@@ -0,0 +1,111 @@
1
+<template>
2
+	<view class="box">
3
+		<view :class="['item',list.length===index?'fakecursor':'']" v-for="(item,index) in length" :key="item" :style="{margin:formatMargin(gutter)}">
4
+			<view class="psw" v-if="showPsw">{{list[index]}}</view>
5
+			<view :class="['circle',(index<list.length)?'dot':'']" v-else></view>
6
+		</view>
7
+	</view>
8
+</template>
9
+
10
+<script>
11
+	export default {
12
+		props: {
13
+			length: { //长度只允许为6和4
14
+				type: Number,
15
+				default: 6,
16
+				validator(val) {
17
+					if (val !== 6 && val !== 4) {
18
+						return false;
19
+					}
20
+					return true;
21
+				}
22
+			},
23
+			gutter: {
24
+				type: Number,
25
+				default: 0
26
+			},
27
+			list: {
28
+				type: Array,
29
+				default: function() {
30
+					return [];
31
+				}
32
+			},
33
+			showPsw: { // 展示密码
34
+				type: Boolean,
35
+				default: false,
36
+			}
37
+		},
38
+		data() {
39
+			return {};
40
+		},
41
+		computed: {
42
+
43
+		},
44
+		methods: {
45
+			formatMargin(gutter) {
46
+				return 0 + ' ' + gutter + 'rpx';
47
+			}
48
+		}
49
+	}
50
+</script>
51
+
52
+<style lang="scss" scoped>
53
+	.box {
54
+		background-color: #F5F5F5;
55
+		padding: 20rpx;
56
+		display: flex;
57
+
58
+		.item {
59
+			position: relative;
60
+			background-color: #FFFFFF;
61
+			height: 100rpx;
62
+			flex: 1;
63
+			border: 1px solid #F5F5F5;
64
+			display: flex;
65
+			justify-content: center;
66
+			align-items: center;
67
+			border-radius: 20rpx;
68
+
69
+			.circle {
70
+				width: 20rpx;
71
+				height: 20rpx;
72
+				border-radius: 50%;
73
+				background-color: #fff;
74
+
75
+				&.dot {
76
+					background-color: #000;
77
+				}
78
+			}
79
+			
80
+			.psw{
81
+				font-size: 24rpx;
82
+			}
83
+		}
84
+	}
85
+
86
+	.fakecursor::after {
87
+		content: '';
88
+		display: block;
89
+		width: 1px;
90
+		height: 32rpx;
91
+		animation: blink 1s infinite steps(1, start);
92
+		position: absolute;
93
+		left: 50%;
94
+		top: 50%;
95
+		margin-top: -16rpx;
96
+	}
97
+
98
+	@keyframes blink {
99
+		0% {
100
+			background-color: white;
101
+		}
102
+
103
+		50% {
104
+			background-color: black;
105
+		}
106
+
107
+		100% {
108
+			background-color: white;
109
+		}
110
+	}
111
+</style>

+ 6 - 0
src/pages.json

@@ -273,6 +273,12 @@
273 273
             "style": {
274 274
                 "navigationBarTitleText": "收银"
275 275
             }
276
+        },
277
+        {
278
+            "path": "pages/manage/cashier/settlement",
279
+            "style": {
280
+                "navigationBarTitleText": "结算"
281
+            }
276 282
         }
277 283
     ]
278 284
 }

+ 11 - 3
src/pages/manage/cashier/index.vue

@@ -656,7 +656,7 @@ export default {
656 656
                     name: "无码商品",
657 657
                     price: value * 100,
658 658
                     id: Date.now(),
659
-                    select_num:1,
659
+                    select_num: 1,
660 660
                     _type: "-1",
661 661
                 });
662 662
                 done();
@@ -666,7 +666,15 @@ export default {
666 666
         },
667 667
 
668 668
         submit() {
669
-            console.log(this.selectList);
669
+            if (this.selectList.length === 0) {
670
+                return this.fn.showToast("请选择收银商品");
671
+            }
672
+            // console.log(JSON.stringify(this.selectList));
673
+            this.$store.commit("common/update", {
674
+                cashierGoodList: [...this.selectList],
675
+            });
676
+            this.selectList = [];
677
+            this.router.push("/pages/manage/cashier/settlement");
670 678
         },
671 679
     },
672 680
 
@@ -825,7 +833,7 @@ page {
825 833
 }
826 834
 .select-list {
827 835
     position: fixed;
828
-    z-index: 90;
836
+    z-index: -1;
829 837
     height: 100vh;
830 838
     left: 0;
831 839
     right: 0;

+ 631 - 0
src/pages/manage/cashier/settlement.vue

@@ -0,0 +1,631 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="card">
4
+            <div class="row head-row">
5
+                <div class="l">商品总额</div>
6
+                <div class="r">{{ totalPrice }}</div>
7
+            </div>
8
+            <div class="row" v-if="discount.show">
9
+                <div class="l">折扣</div>
10
+                <div class="r">
11
+                    {{ (totalPrice - discount.value) | plusMinus }}
12
+                    <span class="close" @click="removeDiscount">
13
+                        <my-image
14
+                            class="img"
15
+                            src="/static/icon/close2.png"
16
+                        ></my-image>
17
+                    </span>
18
+                </div>
19
+            </div>
20
+            <div class="row" v-if="cashValue">
21
+                <div class="l">现金</div>
22
+                <div class="r">
23
+                    -{{ cashValue }}
24
+                    <span class="close" @click="cashValue = ''">
25
+                        <my-image
26
+                            class="img"
27
+                            src="/static/icon/close2.png"
28
+                        ></my-image>
29
+                    </span>
30
+                </div>
31
+            </div>
32
+            <div class="info" v-if="surplusPrice > 0">
33
+                <div class="tools">
34
+                    <span @click="discountShow">折扣</span>
35
+                    <span>优惠券</span>
36
+                </div>
37
+                <div class="money">
38
+                    <span>应收(元)</span>
39
+                    <span class="price"> {{ surplusPrice }} </span>
40
+                </div>
41
+            </div>
42
+            <div class="success" v-if="surplusPrice <= 0">
43
+                <my-image
44
+                    v-if="surplusPrice === 0"
45
+                    class="img"
46
+                    src="/static/icon/ok1.png"
47
+                ></my-image>
48
+                <my-image
49
+                    v-if="surplusPrice < 0"
50
+                    class="img"
51
+                    src="/static/icon/ok2.png"
52
+                ></my-image>
53
+                <div class="text" :class="{ text2: surplusPrice < 0 }">
54
+                    {{ successText }}
55
+                </div>
56
+            </div>
57
+        </div>
58
+
59
+        <div class="submit-btn" v-if="surplusPrice <= 0" @click="submit">
60
+            完成支付
61
+        </div>
62
+
63
+        <ul class="pay-list" v-if="surplusPrice > 0">
64
+            <li class="item" @click="cashVisibile = true">现金</li>
65
+            <li class="item">刷卡</li>
66
+            <li class="item">支付宝</li>
67
+            <li class="item">微信</li>
68
+        </ul>
69
+
70
+        <div class="modal" v-if="cashVisibile">
71
+            <div class="bg" @click="cashVisibile = false"></div>
72
+            <div class="modal-body">
73
+                <div class="modal-head">
74
+                    <div>现金</div>
75
+                    <div @click="cashVisibile = false">
76
+                        <my-image
77
+                            class="close"
78
+                            src="/static/icon/close3.png"
79
+                        ></my-image>
80
+                    </div>
81
+                </div>
82
+                <div class="modal-main">
83
+                    <div class="collection">
84
+                        <section class="l">
85
+                            <div class="name">实收</div>
86
+                            <!-- <input type="d"  class="digit"> -->
87
+                            <div
88
+                                class="input"
89
+                                :class="{ focus: inputType === 3 }"
90
+                            >
91
+                                {{ cashValue }}
92
+                            </div>
93
+                            <!-- <div class="surplus">剩余应收{{actualPrice}}</div> -->
94
+                        </section>
95
+                        <section class="r">
96
+                            <div class="name">找零</div>
97
+                            <div class="input">0</div>
98
+                        </section>
99
+                    </div>
100
+                </div>
101
+                <keyboard-package
102
+                    @onInput="onInput($event, 'cash')"
103
+                    @onDelete="onDelete('cash')"
104
+                    @onConfirm="onConfirm('cash')"
105
+                ></keyboard-package>
106
+            </div>
107
+        </div>
108
+
109
+        <!-- 折扣 -->
110
+        <div class="modal" v-if="discountVisibile">
111
+            <div class="bg" @click="discountVisibile = false"></div>
112
+            <div class="modal-body">
113
+                <div class="modal-head">
114
+                    <div>折扣</div>
115
+                    <div @click="discountVisibile = false">
116
+                        <my-image
117
+                            class="close"
118
+                            src="/static/icon/close3.png"
119
+                        ></my-image>
120
+                    </div>
121
+                </div>
122
+                <div class="modal-main">
123
+                    <div class="collection">
124
+                        <section class="l" @click="inputType = 0">
125
+                            <div class="name">折后总额</div>
126
+                            <!-- <input type="d"  class="digit"> -->
127
+                            <div
128
+                                class="input"
129
+                                :class="{ focus: inputType === 0 }"
130
+                            >
131
+                                {{ discount.value }}
132
+                            </div>
133
+                        </section>
134
+                        <section class="r" @click="inputType = 1">
135
+                            <div class="name">折扣率</div>
136
+                            <div
137
+                                class="input"
138
+                                :class="{ focus: inputType === 1 }"
139
+                            >
140
+                                {{ discount.ratio }}
141
+                            </div>
142
+                            %
143
+                        </section>
144
+                    </div>
145
+                </div>
146
+                <keyboard-package
147
+                    :disableDot="inputType === 1"
148
+                    @onInput="onInput($event, 'discount')"
149
+                    @onDelete="onDelete('discount')"
150
+                    @onConfirm="onConfirm('discount')"
151
+                ></keyboard-package>
152
+            </div>
153
+        </div>
154
+    </div>
155
+</template>
156
+
157
+<script>
158
+import MyImage from "../../../components/image/index";
159
+import KeyboardPackage from "../../../components/keyboard-package/keyboard-package";
160
+
161
+export default {
162
+    name: "",
163
+    components: { MyImage, KeyboardPackage },
164
+    filters: {
165
+        plusMinus(v) {
166
+            if (v > 0) {
167
+                return "-" + +v.toFixed(2);
168
+            } else {
169
+                v = 0 - v;
170
+                return "+" + v.toFixed(2);
171
+            }
172
+        },
173
+    },
174
+    // 数据
175
+    data() {
176
+        return {
177
+            goods: [],
178
+
179
+            inputType: 0, // 0 折扣总额。 1 折扣率 3 现金
180
+
181
+            cashVisibile: false, // 输入现金显示
182
+            cashValue: "",
183
+            // 折扣
184
+            discountVisibile: false,
185
+            discount: {
186
+                show: false,
187
+                ratio: "",
188
+                value: "",
189
+            },
190
+            btnLoading: false,
191
+        };
192
+    },
193
+
194
+    onLoad() {
195
+        this.goods = this.$store.state.common.cashierGoodList;
196
+        if (!this.goods) {
197
+            this.router.back();
198
+        }
199
+    },
200
+    async onShow() {},
201
+    // 函数
202
+    methods: {
203
+        onInput(v, name) {
204
+            switch (name) {
205
+                case "discount":
206
+                    this.discount.show = true;
207
+                    // 折扣
208
+                    if (this.inputType === 0) {
209
+                        this.discount.value += v;
210
+                        this.computeDiscountRatio();
211
+                    } else {
212
+                        this.discount.ratio += v;
213
+                        this.computeDiscountValue();
214
+                    }
215
+
216
+                    break;
217
+                case "cash":
218
+                    // 现金
219
+                    this.cashValue += v;
220
+                    break;
221
+
222
+                default:
223
+                    break;
224
+            }
225
+        },
226
+
227
+        onDelete(name) {
228
+            switch (name) {
229
+                case "discount":
230
+                    // 折扣
231
+                    if (this.inputType === 0) {
232
+                        this.discount.value = this.discount.value.replace(
233
+                            /.$/,
234
+                            ""
235
+                        );
236
+                        this.computeDiscountRatio();
237
+                        if (this.discount.value === "") {
238
+                            this.discount.show = false;
239
+                        }
240
+                    } else {
241
+                        this.discount.ratio = String(
242
+                            this.discount.ratio
243
+                        ).replace(/.$/, "");
244
+                        if (this.discount.ratio === "") {
245
+                            this.discount.show = false;
246
+                        }
247
+                        if (this.cashValue === "") {
248
+                            this.cashValue === "";
249
+                        }
250
+                        this.computeDiscountValue();
251
+                    }
252
+
253
+                    break;
254
+                case "cash":
255
+                    // 现金
256
+                    this.cashValue = this.cashValue.replace(/.$/, "");
257
+                    break;
258
+
259
+                default:
260
+                    break;
261
+            }
262
+        },
263
+
264
+        onConfirm(name) {
265
+            switch (name) {
266
+                case "discount":
267
+                    // 折扣
268
+                    this.discountVisibile = false;
269
+                    break;
270
+                case "cash":
271
+                    // 现金
272
+                    this.cashVisibile = false;
273
+                    break;
274
+
275
+                default:
276
+                    break;
277
+            }
278
+        },
279
+
280
+        // 删除折扣
281
+        removeDiscount() {
282
+            this.discount.show = false;
283
+            this.discount.ratio = "";
284
+            this.discount.value = "";
285
+        },
286
+        // 折扣显示
287
+        discountShow() {
288
+            this.discountVisibile = true;
289
+            this.inputType = 0;
290
+        },
291
+        // 计算折扣后值
292
+        computeDiscountValue() {
293
+            let ratioV = (
294
+                (this.totalPrice * this.discount.ratio) /
295
+                100
296
+            ).toFixed(2);
297
+            this.discount.value = ratioV;
298
+        },
299
+        // 计算折扣率
300
+        computeDiscountRatio() {
301
+            this.discount.ratio = Math.round(
302
+                (this.discount.value / this.totalPrice) * 100
303
+            );
304
+        },
305
+
306
+        submit() {
307
+            if (this.btnLoading) {
308
+                return;
309
+            }
310
+            let sendData = {
311
+                totalAmount: this.totalPrice * 100,
312
+                payAmount: this.payAmount * 100,
313
+                discount: this.discount.show ? Number(this.discount.ratio) : 100, // 折扣
314
+                payMethod: 1, // 支付方式,1-现金支付,2-刷卡支付,3-支付宝支付,4-微信支付
315
+                orderItems: [],
316
+            };
317
+            for (let item of this.goods) {
318
+                sendData.orderItems.push({
319
+                    productId: item.id,
320
+                    // skuId:item.id,
321
+                    // skuId: "1",
322
+                    count: item.select_num,
323
+                    remark: "",
324
+                });
325
+            }
326
+            console.log(sendData);
327
+            this.submitLoading = true;
328
+            uni.showLoading({
329
+                title: "提交中...",
330
+                mask: true,
331
+            });
332
+            this.api
333
+                .post("/Order/Settle", sendData, { pass: true })
334
+                .then((res) => {
335
+                    this.btnLoading = false;
336
+                    uni.hideLoading();
337
+                    if (res.success) {
338
+                        this.fn.showToast("保存成功");
339
+                        this.router.back();
340
+                    } else {
341
+                        this.fn.showModal({
342
+                            content: res.message,
343
+                            showCancel: false,
344
+                        });
345
+                    }
346
+                });
347
+        },
348
+    },
349
+
350
+    // 数据计算
351
+    computed: {
352
+        user() {
353
+            return this.$store.state.user.user;
354
+        },
355
+        // 总金额
356
+        totalPrice() {
357
+            let n = 0;
358
+            for (let item of this.goods) {
359
+                n += item.price / 100;
360
+            }
361
+            return n;
362
+            // return 100;
363
+        },
364
+        // 打折 优惠 后价格
365
+        actualPrice() {
366
+            let price = this.totalPrice;
367
+            if (this.discount.show) {
368
+                price = this.discount.value;
369
+            }
370
+            return price;
371
+        },
372
+        // 收款金额
373
+        payAmount() {
374
+            let v = 0;
375
+            if (this.cashValue) {
376
+                v += Number(this.cashValue);
377
+            }
378
+            return v;
379
+        },
380
+        // 收款后还差多少
381
+        surplusPrice() {
382
+            let v = this.actualPrice;
383
+            if (this.payAmount) {
384
+                v = v - this.payAmount;
385
+            }
386
+            return v;
387
+        },
388
+        // 成功显示文字
389
+        successText() {
390
+            if (this.surplusPrice === 0) {
391
+                return `实收 ¥${this.actualPrice}`;
392
+            } else {
393
+                return `实收 ¥${this.actualPrice - this.surplusPrice},找零¥${
394
+                    0 - this.surplusPrice
395
+                }`;
396
+            }
397
+        },
398
+    },
399
+
400
+    // 数据监听
401
+    watch: {},
402
+};
403
+</script>
404
+
405
+<style lang="scss" scoped>
406
+.page {
407
+    background-color: #0399ce;
408
+    min-height: 100vh;
409
+    display: flex;
410
+    flex-direction: column;
411
+    justify-content: flex-end;
412
+    padding-bottom: px(40);
413
+}
414
+.card {
415
+    background-color: #fff;
416
+    margin: px(35);
417
+    border-radius: px(8);
418
+    .row {
419
+        display: flex;
420
+        justify-content: space-between;
421
+        align-items: center;
422
+        padding: 0 px(30);
423
+        font-size: px(38);
424
+        height: px(110);
425
+        color: #333;
426
+        .close {
427
+            width: px(40);
428
+            height: px(40);
429
+            border-radius: 50%;
430
+            background-color: #d1d1d1;
431
+            display: inline-flex;
432
+            align-items: center;
433
+            justify-content: center;
434
+            margin-left: px(20);
435
+            .img {
436
+                width: px(25);
437
+                height: px(25);
438
+                /deep/ img {
439
+                    width: px(25);
440
+                    height: px(25);
441
+                }
442
+            }
443
+        }
444
+    }
445
+    .head-row {
446
+        height: px(120);
447
+        font-size: px(44);
448
+        border-bottom: 1px solid #f1f1f1;
449
+    }
450
+    .row ~ .row {
451
+        border-top: 1px solid #f1f1f1;
452
+    }
453
+    .info {
454
+        padding: px(50);
455
+        display: flex;
456
+        justify-content: space-between;
457
+        align-items: center;
458
+    }
459
+    .tools {
460
+        display: flex;
461
+        align-items: center;
462
+        span {
463
+            border-radius: px(8);
464
+            height: px(66);
465
+            padding: 0 px(20);
466
+            background-color: #ebdcbb;
467
+            color: #4f3912;
468
+            font-size: px(34);
469
+            display: inline-flex;
470
+            justify-content: center;
471
+            align-items: center;
472
+            & ~ span {
473
+                margin-left: px(20);
474
+            }
475
+        }
476
+    }
477
+    .money {
478
+        display: flex;
479
+        flex-direction: column;
480
+        font-size: px(40);
481
+        .price {
482
+            font-size: px(74);
483
+            margin-top: px(15);
484
+            color: #049dd7;
485
+        }
486
+    }
487
+}
488
+.pay-list {
489
+    display: flex;
490
+    justify-content: space-between;
491
+    align-items: center;
492
+    padding: 0 px(35);
493
+    .item {
494
+        width: 32%;
495
+        height: px(150);
496
+        border-radius: px(8);
497
+        background-color: #fff;
498
+        font-size: px(40);
499
+        display: flex;
500
+        align-items: center;
501
+        padding: px(30);
502
+        box-sizing: border-box;
503
+    }
504
+}
505
+.modal {
506
+    position: fixed;
507
+    top: 0;
508
+    left: 0;
509
+    width: 100%;
510
+    height: 100%;
511
+    z-index: 100;
512
+    .bg {
513
+        width: 100%;
514
+        height: 100%;
515
+        background-color: rgba(0, 0, 0, 0.3);
516
+    }
517
+    .modal-body {
518
+        position: absolute;
519
+        bottom: 0;
520
+        left: 0;
521
+        width: 100%;
522
+        z-index: 1;
523
+    }
524
+    .modal-head {
525
+        height: px(130);
526
+        background-color: #f4f4f4;
527
+        display: flex;
528
+        align-items: center;
529
+        justify-content: space-between;
530
+        padding: 0 px(35);
531
+        .close {
532
+            width: px(40);
533
+            height: px(40);
534
+            /deep/ img {
535
+                width: px(40);
536
+                height: px(40);
537
+            }
538
+        }
539
+    }
540
+    .modal-main {
541
+        padding: px(35);
542
+        background-color: #fff;
543
+    }
544
+}
545
+.collection {
546
+    display: flex;
547
+    justify-content: space-between;
548
+    align-items: flex-start;
549
+    .l,
550
+    .r {
551
+        width: 49%;
552
+    }
553
+    .name {
554
+        font-size: px(38);
555
+        color: #666;
556
+    }
557
+    .input {
558
+        font-size: px(70);
559
+        color: #333;
560
+        margin-top: px(30);
561
+        min-height: px(80);
562
+        line-height: px(80);
563
+        position: relative;
564
+        display: inline-block;
565
+        min-width: 2px;
566
+        max-width: 100%;
567
+        word-break: break-all;
568
+        &.focus {
569
+            &::after {
570
+                content: "";
571
+                position: absolute;
572
+                right: -3px;
573
+                height: 1em;
574
+                bottom: 3px;
575
+                z-index: 1;
576
+                width: 1px;
577
+                background-color: #666;
578
+                animation: focusLine 0.8s linear alternate infinite;
579
+            }
580
+        }
581
+    }
582
+    .surplus {
583
+        font-size: px(38);
584
+        color: #666;
585
+        margin-top: px(30);
586
+    }
587
+}
588
+@keyframes focusLine {
589
+    from {
590
+        opacity: 1;
591
+    }
592
+    to {
593
+        opacity: 0;
594
+    }
595
+}
596
+.success {
597
+    height: px(500);
598
+    display: flex;
599
+    align-items: center;
600
+    justify-content: center;
601
+    flex-direction: column;
602
+    .img {
603
+        width: px(140);
604
+        height: px(140);
605
+        /deep/ img {
606
+            width: px(140);
607
+            height: px(140);
608
+        }
609
+    }
610
+    .text {
611
+        margin-top: px(40);
612
+        font-size: px(50);
613
+        text-align: center;
614
+        color: #06cd58;
615
+    }
616
+    .text2 {
617
+        color: #3c9ec5;
618
+    }
619
+}
620
+.submit-btn {
621
+    height: px(120);
622
+    margin: 0 px(35);
623
+    border-radius: px(8);
624
+    background-color: #fff;
625
+    color: #3c9ec5;
626
+    font-size: px(40);
627
+    display: flex;
628
+    justify-content: center;
629
+    align-items: center;
630
+}
631
+</style>

BIN=BIN
src/static/common/cashier-bg.jpg


BIN=BIN
src/static/icon/close3.png


BIN=BIN
src/static/icon/ok1.png


BIN=BIN
src/static/icon/ok2.png