cr преди 4 години
родител
ревизия
06c1e38b89
променени са 5 файла, в които са добавени 603 реда и са изтрити 1 реда
  1. 12 0
      src/pages.json
  2. 265 0
      src/pages/manage/cashier/cache-detail.vue
  3. 185 0
      src/pages/manage/cashier/cache.vue
  4. 140 0
      src/pages/manage/cashier/index.vue
  5. 1 1
      src/pages/manage/cashier/list.vue

+ 12 - 0
src/pages.json

@@ -298,6 +298,18 @@
298 298
             "style": {
299 299
                 "navigationBarTitleText": "退货"
300 300
             }
301
+        },
302
+        {
303
+            "path": "pages/manage/cashier/cache",
304
+            "style": {
305
+                "navigationBarTitleText": "挂单"
306
+            }
307
+        },
308
+        {
309
+            "path": "pages/manage/cashier/cache-detail",
310
+            "style": {
311
+                "navigationBarTitleText": "挂单详情"
312
+            }
301 313
         }
302 314
     ]
303 315
 }

+ 265 - 0
src/pages/manage/cashier/cache-detail.vue

@@ -0,0 +1,265 @@
1
+<template>
2
+    <div class="page">
3
+        <div class="head">
4
+            <section class="item">
5
+                <!-- <my-image class="img" src=""></my-image> -->
6
+                订单号: {{ data.tradeNo }}
7
+            </section>
8
+            <section class="item">
9
+                <!-- <my-image class="img" src=""></my-image> -->
10
+                状态: {{ data.status | statusFilter }}
11
+            </section>
12
+            <section class="item">
13
+                <!-- <my-image class="img" src=""></my-image> -->
14
+                备注:
15
+                {{ data.payRemark || "" }}
16
+            </section>
17
+            <my-image class="line-img" src="/static/icon/line.jpg"></my-image>
18
+        </div>
19
+        <div class="goods">
20
+            <div class="good-head">
21
+                <div>
22
+                    {{ data.payTime }} 销售{{
23
+                        data.orderItems ? data.orderItems.length : 0
24
+                    }}件
25
+                </div>
26
+                <!-- <div>{{ data.tradeNo }}</div> -->
27
+            </div>
28
+            <ul class="good-list">
29
+                <li
30
+                    class="item"
31
+                    v-for="item of data.orderItems"
32
+                    :key="item.id"
33
+                    :class="{ invalid: item.status === 9 }"
34
+                >
35
+                    <div class="name">{{ item.productName }}</div>
36
+                    <div class="num">
37
+                        <span class="refund" v-if="item.status === 9"
38
+                            >已退货</span
39
+                        >
40
+                        {{ item.count }}
41
+                    </div>
42
+                </li>
43
+            </ul>
44
+        </div>
45
+        <div class="other-info">
46
+            <section class="item">
47
+                <div>商品数量</div>
48
+                <div>{{ data.orderItems ? data.orderItems.length : 0 }}</div>
49
+            </section>
50
+            <section class="item">
51
+                <div>商品总额</div>
52
+                <div>¥{{ data.amount | minuteToRmb2 }}</div>
53
+            </section>
54
+            <section class="item">
55
+                <div>折扣</div>
56
+                <div>
57
+                    -¥{{ (data.amount - data.payAmount) | minuteToRmb2 }}
58
+                </div>
59
+            </section>
60
+            <section class="item color">
61
+                <div>应付</div>
62
+                <div>¥{{ data.payAmount | minuteToRmb2 }}</div>
63
+            </section>
64
+        </div>
65
+
66
+        <div class="tool">
67
+            <span class="btn" @click="">删除</span>
68
+            <span class="btn btn2" @click="">追加</span>
69
+            <span class="btn btn1" @click="">收银</span>
70
+        </div>
71
+    </div>
72
+</template>
73
+
74
+<script>
75
+import MyImage from "../../../components/image/index";
76
+let statusEnum = {
77
+    2: "待支付",
78
+    3: "待发货",
79
+    4: "待收货",
80
+    6: "已取消",
81
+    7: "售后中",
82
+    8: "已删除",
83
+    9: "已完成",
84
+    10: "已评价",
85
+    11: "已售后",
86
+    12: "已退款",
87
+    20: "待接单",
88
+    21: "拣货中",
89
+    22: "拣货完成",
90
+    23: "待配送",
91
+    24: "配送中",
92
+    25: "已送达",
93
+    26: "待提货",
94
+    27: "已提货",
95
+    31: "订单已推单",
96
+    32: "订单已被骑手接单",
97
+    33: "骑手已到店",
98
+    34: "骑手已取餐",
99
+    35: "订单完成",
100
+    36: "订单失败",
101
+};
102
+export default {
103
+    name: "",
104
+    components: { MyImage },
105
+    filters: {
106
+        statusFilter(v) {
107
+            return statusEnum[v] || "";
108
+        },
109
+    },
110
+    // 数据
111
+    data() {
112
+        return {
113
+            pageIndex: 1,
114
+            pageSize: 20,
115
+            data: {},
116
+        };
117
+    },
118
+
119
+    onLoad(opts) {
120
+        this.orderNo = opts.orderNo;
121
+    },
122
+    async onShow() {
123
+        // this.getData(this.orderNo);
124
+    },
125
+    // 函数
126
+    methods: {
127
+        getData(orderNo) {
128
+            this.api
129
+                .get("/Order/GetSettleDetail", {
130
+                    orderNo: orderNo,
131
+                })
132
+                .then((res) => {
133
+                    this.data = res.data;
134
+                });
135
+        },
136
+    },
137
+
138
+    // 数据计算
139
+    computed: {
140
+        user() {
141
+            return this.$store.state.user.user;
142
+        },
143
+    },
144
+
145
+    // 数据监听
146
+    watch: {},
147
+};
148
+</script>
149
+
150
+<style lang="scss" scoped>
151
+.head {
152
+    background-color: #fff;
153
+    border-bottom: 1px solid #f1f1f1;
154
+    .item {
155
+        min-height: px(110);
156
+        display: flex;
157
+        align-items: center;
158
+        padding: 0 px(35);
159
+        border-bottom: 1px solid #f1f1f1;
160
+        font-size: px(40);
161
+    }
162
+    .img {
163
+        width: px(45);
164
+        height: px(45);
165
+        flex-shrink: 0;
166
+        margin-right: px(30);
167
+        /deep/ img {
168
+            width: px(45);
169
+            height: px(45);
170
+        }
171
+    }
172
+}
173
+.goods {
174
+    margin-top: px(40);
175
+    .good-head {
176
+        display: flex;
177
+        align-items: center;
178
+        justify-content: space-between;
179
+        height: px(90);
180
+        padding: 0 px(35);
181
+        font-size: px(38);
182
+        color: #666;
183
+        border-bottom: 1px solid #efefef;
184
+        background-color: #faf7f2;
185
+    }
186
+    .good-list {
187
+        background-color: #fff;
188
+        .item {
189
+            border-bottom: 1px solid #f1f1f1;
190
+            padding: px(20) px(35);
191
+
192
+            min-height: px(160);
193
+            display: flex;
194
+            justify-content: space-between;
195
+            align-items: center;
196
+        }
197
+    }
198
+}
199
+.other-info {
200
+    margin-top: px(40);
201
+    background-color: #fff;
202
+    padding: px(35);
203
+    .item {
204
+        display: flex;
205
+        justify-content: space-between;
206
+        align-items: center;
207
+        padding: px(15) 0;
208
+    }
209
+}
210
+.color {
211
+    color: #0c89c9;
212
+}
213
+.line-img {
214
+    width: 100%;
215
+    height: px(10);
216
+    /deep/ img {
217
+        width: 100%;
218
+        height: px(10);
219
+    }
220
+}
221
+.tool {
222
+    position: fixed;
223
+    bottom: 0;
224
+    left: 0;
225
+    right: 0;
226
+    height: px(130);
227
+    z-index: 10;
228
+    border-top: 1px solid #f1f1f1;
229
+    display: flex;
230
+    padding: px(35);
231
+    align-items: center;
232
+    justify-content: flex-end;
233
+    background-color: #fff;
234
+    .btn {
235
+        width: px(190);
236
+        height: px(88);
237
+        display: flex;
238
+        align-items: center;
239
+        justify-content: center;
240
+        font-size: px(40);
241
+        border-radius: px(8);
242
+        border: 1px solid #f1f1f1;
243
+        margin-left: px(30);
244
+    }
245
+    .btn1{
246
+        background-color: #ff1135;
247
+        border-color: #ff1135;
248
+        color: #fff;
249
+    }
250
+    .btn2{
251
+        background-color: #a9998a;
252
+        border-color: #a9998a;
253
+        color: #fff;
254
+    }
255
+}
256
+.invalid {
257
+    background-color: #f9f9f9;
258
+    color: #666 !important;
259
+    .refund {
260
+        display: inline-block;
261
+        font-size: px(40);
262
+        margin-right: px(20);
263
+    }
264
+}
265
+</style>

+ 185 - 0
src/pages/manage/cashier/cache.vue

@@ -0,0 +1,185 @@
1
+<template>
2
+    <div class="page shop-cart-page" :class="{ page_red: theme === 1 }">
3
+        <div class="page__top">
4
+            <div class="search">
5
+                <i class="iconfont icontubiao- search__icon"></i>
6
+                <input
7
+                    class="search__text"
8
+                    v-model="searchVal"
9
+                    @confirm="search()"
10
+                    type="text"
11
+                    placeholder="搜索牌号"
12
+                />
13
+                <i
14
+                    class="iconfont iconclose_icon search__icon remove-icon"
15
+                    @click="closeSearchVal"
16
+                ></i>
17
+            </div>
18
+        </div>
19
+        <div class="page__content">
20
+            <ul class="list">
21
+                <li class="item" @click="goDetail">100</li>
22
+                <li class="item">12</li>
23
+                <li class="item">130</li>
24
+                <li class="item">1550</li>
25
+            </ul>
26
+        </div>
27
+    </div>
28
+</template>
29
+
30
+<script>
31
+import MyImage from "../../../components/image/index";
32
+export default {
33
+    name: "",
34
+    filters: {},
35
+    components: {
36
+        MyImage,
37
+    },
38
+    // 数据
39
+    data() {
40
+        return {
41
+            searchVal: "",
42
+            dataList: [],
43
+            pageIndex:1,
44
+            pageSize:20
45
+        };
46
+    },
47
+
48
+    onLoad() {},
49
+
50
+    async onShow() {},
51
+
52
+    onPullDownRefresh() {
53
+
54
+        this.getList();
55
+
56
+    },
57
+    onReachBottom(){
58
+        this.getMoreList();
59
+    },
60
+
61
+    // 函数
62
+    methods: {
63
+
64
+        getList() {
65
+            uni.showLoading({
66
+                title: "加载中...",
67
+                mask: true,
68
+            });
69
+            this.pageIndex = 1;
70
+            this.dataEnd = false;
71
+            this.api
72
+                .get("/Order/GetSettleList", {
73
+                    pageIndex: this.pageIndex,
74
+                    pageSize: this.pageSize,
75
+                })
76
+                .then((res) => {
77
+                    uni.hideLoading();
78
+                    this.dataList = res.data.data;
79
+                });
80
+        },
81
+        getMoreList() {
82
+            if (this.dataEnd) {
83
+                return;
84
+            }
85
+            this.pageIndex++;
86
+            this.api
87
+                .get("/Order/GetSettleList", {
88
+                    pageIndex: this.pageIndex,
89
+                    pageSize: this.pageSize,
90
+                })
91
+                .then((res) => {
92
+                    if (res.data.data.length === 0) {
93
+                        this.dataEnd = true;
94
+                    } else {
95
+                        this.dataList = [...this.dataList, ...res.data.data];
96
+                    }
97
+                });
98
+        },
99
+
100
+        goDetail(item) {
101
+            this.router.push({
102
+                path: "/pages/manage/cashier/cache-detail",
103
+                query: {
104
+                    
105
+                },
106
+            });
107
+        },
108
+
109
+        // 搜索
110
+        search() {
111
+            if (this.searchVal) {
112
+                this.getList();
113
+            }
114
+        },
115
+        closeSearchVal() {
116
+            this.searchVal = "";
117
+            this.getGoodsList();
118
+        },
119
+    },
120
+
121
+    // 数据计算
122
+    computed: {
123
+        user() {
124
+            return this.$store.state.user.user;
125
+        },
126
+    },
127
+    // 数据监听
128
+    watch: {},
129
+};
130
+</script>
131
+
132
+
133
+
134
+<style lang="scss" scoped>
135
+.page {
136
+    &__top {
137
+        display: flex;
138
+        justify-content: space-between;
139
+        align-items: center;
140
+        height: px(145);
141
+        padding: 0 px(50);
142
+        background-color: #fff;
143
+        // box-shadow: 0 px(-5) px(10) #333;
144
+    }
145
+}
146
+.search {
147
+    display: flex;
148
+    align-items: center;
149
+    width: 100%;
150
+    height: px(86);
151
+    padding: 0 px(35);
152
+    background-color: #f8f8f8;
153
+    border-radius: px(43);
154
+
155
+    &__icon {
156
+        margin-top: px(10);
157
+        font-size: px(60);
158
+        color: #999;
159
+    }
160
+
161
+    &__text {
162
+        margin-left: px(15);
163
+        font-size: px(36);
164
+        color: #999;
165
+        width: 100%;
166
+    }
167
+}
168
+.list {
169
+    display: flex;
170
+    justify-content: space-between;
171
+    flex-wrap: wrap;
172
+    padding: 0 px(35);
173
+    margin-top: px(30);
174
+    .item {
175
+        width: px(300);
176
+        height: px(100);
177
+        display: flex;
178
+        align-items: center;
179
+        justify-content: center;
180
+        margin-top: px(30);
181
+        background-color: #fff;
182
+        border-radius: px(8);
183
+    }
184
+}
185
+</style>

+ 140 - 0
src/pages/manage/cashier/index.vue

@@ -2,6 +2,7 @@
2 2
     <div class="page shop-cart-page" :class="{ page_red: theme === 1 }">
3 3
         <div class="page__top">
4 4
             <span class="quick-text" @click="addNumGood">无码商品</span>
5
+            <span class="quick-text" @click="goCacheList">挂单列表</span>
5 6
             <div class="search">
6 7
                 <i class="iconfont icontubiao- search__icon"></i>
7 8
                 <input
@@ -329,6 +330,7 @@
329 330
                 <span class="price">¥ {{ selectPrice }}</span>
330 331
             </div>
331 332
             <div class="bottom-r">
333
+                <span class="btn cache" @click="viewCache">挂单</span>
332 334
                 <span class="btn" @click="submit">结算</span>
333 335
             </div>
334 336
         </div>
@@ -344,6 +346,34 @@
344 346
         </uni-popup>
345 347
         <!-- 规格选择 -->
346 348
         <g-spec-modal ref="spec" @change="modalCartChange()"></g-spec-modal>
349
+        <!-- 挂单 -->
350
+        <div class="cache-modal" v-if="cacheShow">
351
+            <div class="bg"></div>
352
+            <div class="cache-body">
353
+                <div class="head">
354
+                    <div class="tit">挂单</div>
355
+                    <div class="close">取消</div>
356
+                </div>
357
+                <div class="body">
358
+                    <div class="item">
359
+                        <input
360
+                            type="number"
361
+                            placeholder="牌号"
362
+                            v-model="cacheForm.num"
363
+                            :maxlength="8"
364
+                        />
365
+                    </div>
366
+                    <div class="item">
367
+                        <input
368
+                            type="text"
369
+                            placeholder="备注"
370
+                            v-model="cacheForm.remarks"
371
+                        />
372
+                    </div>
373
+                </div>
374
+                <div class="cache-btn" @click="cacheSubmit">确定</div>
375
+            </div>
376
+        </div>
347 377
     </div>
348 378
 </template>
349 379
 
@@ -402,6 +432,13 @@ export default {
402 432
             // 购物车选择
403 433
             selectList: [],
404 434
             showSelectList: false,
435
+
436
+            // 挂单
437
+            cacheShow: false,
438
+            cacheForm: {
439
+                num: "",
440
+                remarks: "",
441
+            },
405 442
         };
406 443
     },
407 444
 
@@ -769,6 +806,48 @@ export default {
769 806
         },
770 807
 
771 808
         modalCartChange() {},
809
+
810
+        // 挂单显示
811
+        viewCache() {
812
+            this.cacheForm.num === "";
813
+            this.cacheForm.remarks === "";
814
+            this.cacheShow = true;
815
+        },
816
+
817
+        cacheSubmit() {
818
+            this.cacheShow = false;
819
+            console.log(this.cacheForm,this.selectList);
820
+            // uni.showLoading({
821
+            //     title: "提交中...",
822
+            //     mask: true,
823
+            // });
824
+            // this.api
825
+            //     .post(
826
+            //         "/order/reverseSettle",
827
+            //         {
828
+            //             query: true,
829
+            //             id: this.data.id,
830
+            //         },
831
+            //         { pass: true }
832
+            //     )
833
+            //     .then((res) => {
834
+            //         this.btnLoading = false;
835
+            //         uni.hideLoading();
836
+            //         if (res.success) {
837
+            //             this.fn.showToast("挂单成功");
838
+            //             this.cacheShow = false;
839
+            //         } else {
840
+            //             this.fn.showModal({
841
+            //                 content: res.message,
842
+            //                 showCancel: false,
843
+            //             });
844
+            //         }
845
+            //     });
846
+        },
847
+
848
+        goCacheList(){
849
+            this.router.push('/pages/manage/cashier/cache')
850
+        }
772 851
     },
773 852
 
774 853
     // 数据计算
@@ -928,6 +1007,14 @@ page {
928 1007
         }
929 1008
     }
930 1009
 }
1010
+.bottom-r {
1011
+    display: flex;
1012
+    align-items: stretch;
1013
+    justify-content: space-between;
1014
+    .cache {
1015
+        background-color: #343434;
1016
+    }
1017
+}
931 1018
 .select-list {
932 1019
     position: fixed;
933 1020
     z-index: -1;
@@ -1698,4 +1785,57 @@ page {
1698 1785
     border-radius: px(30);
1699 1786
     flex-shrink: 0;
1700 1787
 }
1788
+.cache-modal {
1789
+    position: fixed;
1790
+    bottom: 0;
1791
+    top: 0;
1792
+    left: 0;
1793
+    right: 0;
1794
+    z-index: 1005;
1795
+    .bg {
1796
+        width: 100%;
1797
+        height: 100%;
1798
+        background-color: rgba(0, 0, 0, 0.3);
1799
+    }
1800
+    .cache-body {
1801
+        position: absolute;
1802
+        bottom: 0;
1803
+        left: 0;
1804
+        right: 0;
1805
+        z-index: 100;
1806
+        background-color: #fff;
1807
+    }
1808
+    .head {
1809
+        background-color: #f4f4f4;
1810
+        height: px(130);
1811
+        padding: 0 px(35);
1812
+        display: flex;
1813
+        justify-content: space-between;
1814
+        align-items: center;
1815
+        font-size: px(40);
1816
+        .close {
1817
+            color: #149eba;
1818
+        }
1819
+    }
1820
+    .body {
1821
+    }
1822
+    .item {
1823
+        padding: px(10) px(35);
1824
+        border-bottom: 1px solid #f1f1f1;
1825
+        input {
1826
+            height: px(120);
1827
+            width: 100%;
1828
+        }
1829
+    }
1830
+    .cache-btn {
1831
+        width: 100%;
1832
+        height: px(120);
1833
+        display: flex;
1834
+        align-items: center;
1835
+        justify-content: center;
1836
+        background-color: #27a34f;
1837
+        color: #fff;
1838
+        font-size: px(40);
1839
+    }
1840
+}
1701 1841
 </style>

+ 1 - 1
src/pages/manage/cashier/list.vue

@@ -104,7 +104,7 @@ export default {
104 104
     methods: {
105 105
         getList() {
106 106
             uni.showLoading({
107
-                title: "提交中...",
107
+                title: "加载中...",
108 108
                 mask: true,
109 109
             });
110 110
             this.pageIndex = 1;