|
@@ -0,0 +1,166 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="page">
|
|
3
|
+ <div class="head">
|
|
4
|
+ <!-- <section class="item">
|
|
5
|
+ <my-image class="img" src=""></my-image>
|
|
6
|
+ 0002
|
|
7
|
+ </section>
|
|
8
|
+ <section class="item">
|
|
9
|
+ <my-image class="img" src=""></my-image>
|
|
10
|
+ 非会员
|
|
11
|
+ </section> -->
|
|
12
|
+ <section class="item">
|
|
13
|
+ <my-image class="img" src=""></my-image>
|
|
14
|
+ {{ data.payRemark }}
|
|
15
|
+ </section>
|
|
16
|
+ </div>
|
|
17
|
+ <div class="goods">
|
|
18
|
+ <div class="good-head">
|
|
19
|
+ <div>
|
|
20
|
+ {{ data.payTime }} 销售{{
|
|
21
|
+ data.orderItems ? data.orderItems.length : 0
|
|
22
|
+ }}件
|
|
23
|
+ </div>
|
|
24
|
+ <!-- <div>{{ data.tradeNo }}</div> -->
|
|
25
|
+ </div>
|
|
26
|
+ <ul class="good-list">
|
|
27
|
+ <li class="item" v-for="item of data.orderItems" :key="item.id">
|
|
28
|
+ <div class="name">{{ item.productName }}</div>
|
|
29
|
+ <div class="num">{{ item.count }}</div>
|
|
30
|
+ </li>
|
|
31
|
+ </ul>
|
|
32
|
+ </div>
|
|
33
|
+ <div class="other-info">
|
|
34
|
+ <section class="item">
|
|
35
|
+ <div>商品数量</div>
|
|
36
|
+ <div>{{ data.orderItems ? data.orderItems.length : 0 }}</div>
|
|
37
|
+ </section>
|
|
38
|
+ <section class="item">
|
|
39
|
+ <div>商品总额</div>
|
|
40
|
+ <div>¥{{ data.amount | minuteToRmb2}}</div>
|
|
41
|
+ </section>
|
|
42
|
+ <!-- <section class="item">
|
|
43
|
+ <div>折扣</div>
|
|
44
|
+ <div>¥{{ (data.amount/100)*(data.discount/100) }}</div>
|
|
45
|
+ </section> -->
|
|
46
|
+ <section class="item color">
|
|
47
|
+ <div>应付</div>
|
|
48
|
+ <div>¥{{ data.payAmount | minuteToRmb2}}</div>
|
|
49
|
+ </section>
|
|
50
|
+ </div>
|
|
51
|
+
|
|
52
|
+ <div class="tool">
|
|
53
|
+
|
|
54
|
+ </div>
|
|
55
|
+ </div>
|
|
56
|
+</template>
|
|
57
|
+
|
|
58
|
+<script>
|
|
59
|
+import MyImage from "../../../components/image/index";
|
|
60
|
+
|
|
61
|
+export default {
|
|
62
|
+ name: "",
|
|
63
|
+ components: { MyImage },
|
|
64
|
+ filters: {},
|
|
65
|
+ // 数据
|
|
66
|
+ data() {
|
|
67
|
+ return {
|
|
68
|
+ pageIndex: 1,
|
|
69
|
+ pageSize: 20,
|
|
70
|
+ data: {},
|
|
71
|
+ };
|
|
72
|
+ },
|
|
73
|
+
|
|
74
|
+ onLoad(opts) {
|
|
75
|
+ console.log(opts);
|
|
76
|
+ this.getData(opts.orderNo);
|
|
77
|
+ },
|
|
78
|
+ async onShow() {},
|
|
79
|
+ // 函数
|
|
80
|
+ methods: {
|
|
81
|
+ getData(orderNo) {
|
|
82
|
+ this.api
|
|
83
|
+ .get("/Order/GetSettleDetail", {
|
|
84
|
+ orderNo: orderNo,
|
|
85
|
+ })
|
|
86
|
+ .then((res) => {
|
|
87
|
+ this.data = res.data;
|
|
88
|
+ });
|
|
89
|
+ },
|
|
90
|
+ },
|
|
91
|
+
|
|
92
|
+ // 数据计算
|
|
93
|
+ computed: {
|
|
94
|
+ user() {
|
|
95
|
+ return this.$store.state.user.user;
|
|
96
|
+ },
|
|
97
|
+ },
|
|
98
|
+
|
|
99
|
+ // 数据监听
|
|
100
|
+ watch: {},
|
|
101
|
+};
|
|
102
|
+</script>
|
|
103
|
+
|
|
104
|
+<style lang="scss" scoped>
|
|
105
|
+.head {
|
|
106
|
+ background-color: #fff;
|
|
107
|
+ .item {
|
|
108
|
+ min-height: px(110);
|
|
109
|
+ display: flex;
|
|
110
|
+ align-items: center;
|
|
111
|
+ padding: 0 px(35);
|
|
112
|
+ border-bottom: 1px solid #f1f1f1;
|
|
113
|
+ font-size: px(40);
|
|
114
|
+ }
|
|
115
|
+ .img {
|
|
116
|
+ width: px(45);
|
|
117
|
+ height: px(45);
|
|
118
|
+ flex-shrink: 0;
|
|
119
|
+ margin-right: px(30);
|
|
120
|
+ /deep/ img {
|
|
121
|
+ width: px(45);
|
|
122
|
+ height: px(45);
|
|
123
|
+ }
|
|
124
|
+ }
|
|
125
|
+}
|
|
126
|
+.goods{
|
|
127
|
+ margin-top: px(30);
|
|
128
|
+ .good-head {
|
|
129
|
+ display: flex;
|
|
130
|
+ align-items: center;
|
|
131
|
+ justify-content: space-between;
|
|
132
|
+ height: px(90);
|
|
133
|
+ padding: 0 px(35);
|
|
134
|
+ font-size: px(38);
|
|
135
|
+ color: #666;
|
|
136
|
+ border-bottom: 1px solid #efefef;
|
|
137
|
+ background-color: #faf7f2;
|
|
138
|
+ }
|
|
139
|
+ .good-list {
|
|
140
|
+ background-color: #fff;
|
|
141
|
+ .item {
|
|
142
|
+ border-bottom: 1px solid #f1f1f1;
|
|
143
|
+ padding: px(20) px(35);
|
|
144
|
+
|
|
145
|
+ min-height: px(160);
|
|
146
|
+ display: flex;
|
|
147
|
+ justify-content: space-between;
|
|
148
|
+ align-items: center;
|
|
149
|
+ }
|
|
150
|
+ }
|
|
151
|
+}
|
|
152
|
+.other-info {
|
|
153
|
+ margin-top: px(30);
|
|
154
|
+ background-color: #fff;
|
|
155
|
+ padding: px(35);
|
|
156
|
+ .item {
|
|
157
|
+ display: flex;
|
|
158
|
+ justify-content: space-between;
|
|
159
|
+ align-items: center;
|
|
160
|
+ padding: px(15) 0;
|
|
161
|
+ }
|
|
162
|
+}
|
|
163
|
+.color {
|
|
164
|
+ color: #0c89c9;
|
|
165
|
+}
|
|
166
|
+</style>
|