|
@@ -0,0 +1,254 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="page">
|
|
3
|
+ <ul class="brief-data">
|
|
4
|
+ <li class="item">
|
|
5
|
+ <div class="name">成交人数</div>
|
|
6
|
+ <div class="value">{{ briefData.dealCount || "" }}</div>
|
|
7
|
+ </li>
|
|
8
|
+ <li class="item">
|
|
9
|
+ <div class="name">订单量</div>
|
|
10
|
+ <div class="value">{{ briefData.orderCount || "" }}</div>
|
|
11
|
+ </li>
|
|
12
|
+ <li class="item">
|
|
13
|
+ <div class="name">下单件数</div>
|
|
14
|
+ <div class="value">{{ briefData.orderItemCount || "" }}</div>
|
|
15
|
+ </li>
|
|
16
|
+ <li class="item">
|
|
17
|
+ <div class="name">退款金额(元)</div>
|
|
18
|
+ <div class="value">
|
|
19
|
+ {{
|
|
20
|
+ briefData.refundAmount
|
|
21
|
+ ? briefData.refundAmount / 100
|
|
22
|
+ : ""
|
|
23
|
+ }}
|
|
24
|
+ </div>
|
|
25
|
+ </li>
|
|
26
|
+ </ul>
|
|
27
|
+ <!-- data-list -->
|
|
28
|
+ <div class="data-list">
|
|
29
|
+ <div class="filter">
|
|
30
|
+ <!-- <div >时间选择</div> -->
|
|
31
|
+ <ul class="date-list">
|
|
32
|
+ <li class="on">今天</li>
|
|
33
|
+ <li>昨天</li>
|
|
34
|
+ <li>近7天</li>
|
|
35
|
+ <li>近30天</li>
|
|
36
|
+ </ul>
|
|
37
|
+ </div>
|
|
38
|
+ <ul class="data-table">
|
|
39
|
+ <li class="row row-head">
|
|
40
|
+ <div class="cell">日期</div>
|
|
41
|
+ <div class="cell">成交数</div>
|
|
42
|
+ <div class="cell">订单量</div>
|
|
43
|
+ <div class="cell">退款</div>
|
|
44
|
+ <div class="cell">销售额</div>
|
|
45
|
+ </li>
|
|
46
|
+ <li class="row" v-for="(item, index) of dataList" :key="index">
|
|
47
|
+ <div class="cell">
|
|
48
|
+ {{ item.date | dateFormat("MM-dd") }}
|
|
49
|
+ </div>
|
|
50
|
+ <div class="cell">{{ item.dealCount | maxNum }}</div>
|
|
51
|
+ <div class="cell">{{ item.orderCount | maxNum }}</div>
|
|
52
|
+ <div class="cell">{{ item.refundAmount | maxNum }}</div>
|
|
53
|
+ <div class="cell">{{ item.saleAmount | maxNum }}</div>
|
|
54
|
+ </li>
|
|
55
|
+ </ul>
|
|
56
|
+ </div>
|
|
57
|
+ </div>
|
|
58
|
+</template>
|
|
59
|
+
|
|
60
|
+<script>
|
|
61
|
+import MyImage from "../../components/image/index";
|
|
62
|
+import uCharts from "../../components/u-charts/u-charts.js";
|
|
63
|
+
|
|
64
|
+export default {
|
|
65
|
+ name: "",
|
|
66
|
+ components: { MyImage },
|
|
67
|
+
|
|
68
|
+ // 数据
|
|
69
|
+ data() {
|
|
70
|
+ return {
|
|
71
|
+ storeId: "",
|
|
72
|
+ filterDateList: [], // 快捷日期 [{name,startTime,endTime}]
|
|
73
|
+ briefData: {}, // 简略信息
|
|
74
|
+ dataList: [], // 数据列表
|
|
75
|
+ };
|
|
76
|
+ },
|
|
77
|
+
|
|
78
|
+ onLoad() {
|
|
79
|
+ if (this.user.storeId) {
|
|
80
|
+ this.storeId = this.user.storeId;
|
|
81
|
+ } else {
|
|
82
|
+ this.storeId = this.$store.state.common.manageShop.id;
|
|
83
|
+ }
|
|
84
|
+ this.initFilterDateList();
|
|
85
|
+ this.getOrderBriefData();
|
|
86
|
+ this.getOrderDataList();
|
|
87
|
+ },
|
|
88
|
+ async onShow() {},
|
|
89
|
+ // 函数
|
|
90
|
+ methods: {
|
|
91
|
+ // 生成日期过滤
|
|
92
|
+ initFilterDateList() {
|
|
93
|
+ let arr = [];
|
|
94
|
+ // 今天
|
|
95
|
+ let date = new Date();
|
|
96
|
+ let year = date.getFullYear();
|
|
97
|
+ let month =
|
|
98
|
+ date.getMonth() + 1 > 9
|
|
99
|
+ ? "" + (date.getMonth() + 1)
|
|
100
|
+ : "0" + (date.getMonth() + 1);
|
|
101
|
+ let day =
|
|
102
|
+ date.getDate() > 9 ? "" + date.getDate() : "0" + date.getDate();
|
|
103
|
+ arr.push({
|
|
104
|
+ name: "今天",
|
|
105
|
+ startTime: `${year}-${month}-${day} 00:00:00`,
|
|
106
|
+ endTime: `${year}-${month}-${day} 23:59:59`,
|
|
107
|
+ });
|
|
108
|
+ let date2 = new Date(date);
|
|
109
|
+ date2.setDate(date.getDate() - 1);
|
|
110
|
+ arr.push({
|
|
111
|
+ name: "昨天",
|
|
112
|
+ startTime: `${date2.getFullYear()}-${
|
|
113
|
+ date2.getMonth() + 1
|
|
114
|
+ }-${date2.getDate()} 00:00:00`,
|
|
115
|
+ endTime: `${year}-${month}-${day - 1} 23:59:59`,
|
|
116
|
+ });
|
|
117
|
+ let date3 = new Date(date);
|
|
118
|
+ date3.setDate(date.getDate() - 7);
|
|
119
|
+ arr.push({
|
|
120
|
+ name: "近7天",
|
|
121
|
+ startTime: `${date2.getFullYear()}-${
|
|
122
|
+ date2.getMonth() + 1
|
|
123
|
+ }-${date2.getDate()} 00:00:00`,
|
|
124
|
+ endTime: `${year}-${month}-${day} 23:59:59`,
|
|
125
|
+ });
|
|
126
|
+ arr.push({
|
|
127
|
+ name: "近30天",
|
|
128
|
+ startTime: `${year}-${month - 1}-${day} 00:00:00`,
|
|
129
|
+ endTime: `${year}-${month}-${day} 23:59:59`,
|
|
130
|
+ });
|
|
131
|
+ console.log(arr);
|
|
132
|
+ },
|
|
133
|
+
|
|
134
|
+ // 订单概况
|
|
135
|
+ getOrderBriefData() {
|
|
136
|
+ this.api
|
|
137
|
+ .get("/Data/GetOrderBriefData", {
|
|
138
|
+ storeId: this.storeId,
|
|
139
|
+ })
|
|
140
|
+ .then((res) => {
|
|
141
|
+ this.briefData = res.data;
|
|
142
|
+ });
|
|
143
|
+ },
|
|
144
|
+ // 获取订单交易数据
|
|
145
|
+ getOrderDataList() {
|
|
146
|
+ uni.showLoading({
|
|
147
|
+ title: "加载中...",
|
|
148
|
+ });
|
|
149
|
+ this.api
|
|
150
|
+ .get("/Data/GetOrderDataList", {
|
|
151
|
+ storeId: this.storeId,
|
|
152
|
+ startTime: "2020-10-19 00:00:00",
|
|
153
|
+ endTime: "2020-11-19 23:59:59",
|
|
154
|
+ })
|
|
155
|
+ .then((res) => {
|
|
156
|
+ uni.hideLoading();
|
|
157
|
+ for (let item of res.data) {
|
|
158
|
+ item.saleAmount /= 100;
|
|
159
|
+ }
|
|
160
|
+ this.dataList = res.data;
|
|
161
|
+ });
|
|
162
|
+ },
|
|
163
|
+ },
|
|
164
|
+
|
|
165
|
+ // 数据计算
|
|
166
|
+ computed: {
|
|
167
|
+ user() {
|
|
168
|
+ return this.$store.state.user.user;
|
|
169
|
+ },
|
|
170
|
+ },
|
|
171
|
+
|
|
172
|
+ // 数据监听
|
|
173
|
+ watch: {},
|
|
174
|
+};
|
|
175
|
+</script>
|
|
176
|
+
|
|
177
|
+<style lang="scss" scoped>
|
|
178
|
+.page {
|
|
179
|
+ padding-bottom: px(50);
|
|
180
|
+}
|
|
181
|
+.brief-data {
|
|
182
|
+ display: flex;
|
|
183
|
+ flex-wrap: wrap;
|
|
184
|
+ border-top: 1px solid #f1f1f1;
|
|
185
|
+ width: 100%;
|
|
186
|
+ background-color: #fff;
|
|
187
|
+ .item {
|
|
188
|
+ width: 50%;
|
|
189
|
+ display: flex;
|
|
190
|
+ justify-content: center;
|
|
191
|
+ align-items: center;
|
|
192
|
+ flex-direction: column;
|
|
193
|
+ font-size: px(44);
|
|
194
|
+ padding: px(30);
|
|
195
|
+ line-height: px(66);
|
|
196
|
+ border-bottom: 1px solid #f1f1f1;
|
|
197
|
+ &:nth-child(2n) {
|
|
198
|
+ border-left: 1px solid #f1f1f1;
|
|
199
|
+ }
|
|
200
|
+ }
|
|
201
|
+ .value {
|
|
202
|
+ height: px(66);
|
|
203
|
+ font-weight: bold;
|
|
204
|
+ margin-top: px(10);
|
|
205
|
+ @include omit(100%);
|
|
206
|
+ }
|
|
207
|
+}
|
|
208
|
+.data-list {
|
|
209
|
+ margin-top: px(30);
|
|
210
|
+ background-color: #fff;
|
|
211
|
+}
|
|
212
|
+.filter {
|
|
213
|
+ padding: px(30);
|
|
214
|
+ .date-list {
|
|
215
|
+ display: flex;
|
|
216
|
+ justify-content: space-between;
|
|
217
|
+ font-size: px(44);
|
|
218
|
+ text-align: center;
|
|
219
|
+ li {
|
|
220
|
+ border: 1px solid #f1f1f1;
|
|
221
|
+ padding: px(20) 0;
|
|
222
|
+ width: 25%;
|
|
223
|
+ flex-shrink: 0;
|
|
224
|
+ &.on {
|
|
225
|
+ border-color: rgb(0, 188, 38);
|
|
226
|
+ color: rgb(0, 188, 38);
|
|
227
|
+ }
|
|
228
|
+ }
|
|
229
|
+ }
|
|
230
|
+}
|
|
231
|
+.data-table {
|
|
232
|
+ margin-top: px(30);
|
|
233
|
+ .row {
|
|
234
|
+ display: flex;
|
|
235
|
+ justify-content: space-between;
|
|
236
|
+ border-right: 1px solid #f1f1f1;
|
|
237
|
+ font-size: px(40);
|
|
238
|
+ border-bottom: 1px solid #f1f1f1;
|
|
239
|
+ border-top: 1px solid #f1f1f1;
|
|
240
|
+ color: #333;
|
|
241
|
+ .cell {
|
|
242
|
+ width: 16.666666%;
|
|
243
|
+ flex-shrink: 0;
|
|
244
|
+ overflow: hidden;
|
|
245
|
+ border-left: 1px solid #f1f1f1;
|
|
246
|
+ text-align: center;
|
|
247
|
+ padding: px(20) 0;
|
|
248
|
+ }
|
|
249
|
+ }
|
|
250
|
+ .row-head {
|
|
251
|
+ color: #666;
|
|
252
|
+ }
|
|
253
|
+}
|
|
254
|
+</style>
|