cr 4 år sedan
förälder
incheckning
831ef4ef60

+ 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

+ 14 - 0
src/common/js/filters.js

@@ -174,4 +174,18 @@ export function minuteToRmb2(val) {
174 174
     val = val || 0
175 175
 
176 176
     return Number(val) / 100
177
+}
178
+/**
179
+ * 数字不能大于maxNum
180
+ * @param val
181
+ * @param maxNum
182
+ * @returns {string}
183
+ */
184
+export function maxNum(val,maxNum=999) {
185
+    val = val || 0
186
+    if(val>maxNum){
187
+        return maxNum+'+';
188
+    }else{
189
+        return val;
190
+    }
177 191
 }

+ 4 - 3
src/common/js/plugin.js

@@ -236,9 +236,10 @@ export default {
236 236
     roleHandle(){
237 237
         let user = store.state.user.user;
238 238
         if(user){
239
-            // if(user.roleId === '05caf6e0-9069-4da0-9d7e-92d27ce2b7be'){
240
-
241
-            // }
239
+            // 配送员
240
+            if(user.roleId === '05caf6e0-9069-4da0-9d7e-92d27ce2b7be'){
241
+                uni.hideTabBar({});
242
+            }
242 243
         }
243 244
     },
244 245
 

+ 165 - 0
src/components/u-charts/component.vue

@@ -0,0 +1,165 @@
1
+<template>
2
+	<canvas v-if="canvasId" :id="canvasId" :canvasId="canvasId" :style="{'width':cWidth*pixelRatio+'px','height':cHeight*pixelRatio+'px', 'transform': 'scale('+(1/pixelRatio)+')','margin-left':-cWidth*(pixelRatio-1)/2+'px','margin-top':-cHeight*(pixelRatio-1)/2+'px'}"
3
+	 @touchstart="touchStart" @touchmove="touchMove" @touchend="touchEnd" @error="error">
4
+	</canvas>
5
+</template>
6
+
7
+<script>
8
+	import uCharts from './u-charts.js';
9
+	var canvases = {};
10
+	
11
+	export default {
12
+		props: {
13
+			chartType: {
14
+				required: true,
15
+				type: String,
16
+				default: 'column'
17
+			},
18
+			opts: {
19
+				required: true,
20
+				type: Object,
21
+				default () {
22
+					return null;
23
+				},
24
+			},
25
+			canvasId: {
26
+				type: String,
27
+				default: 'u-canvas',
28
+			},
29
+			cWidth: {
30
+				default: 375,
31
+			},
32
+			cHeight: {
33
+				default: 250,
34
+			},
35
+			pixelRatio: {
36
+				type: Number,
37
+				default: 1,
38
+			},
39
+		},
40
+		mounted() {
41
+			this.init();
42
+		},
43
+		methods: {
44
+			init() {
45
+				switch (this.chartType) {
46
+					case 'column':
47
+						this.initColumnChart();
48
+						break;
49
+					case 'line':
50
+						this.initLineChart();
51
+						break;
52
+					default:
53
+						break;
54
+				}
55
+			},
56
+			initColumnChart() {
57
+				canvases[this.canvasId] = new uCharts({
58
+					$this: this,
59
+					canvasId: this.canvasId,
60
+					type: 'column',
61
+					legend: true,
62
+					fontSize: 11,
63
+					background: '#FFFFFF',
64
+					pixelRatio: this.pixelRatio,
65
+					animation: true,
66
+					categories: this.opts.categories,
67
+					series: this.opts.series,
68
+					enableScroll: true,
69
+					xAxis: {
70
+						disableGrid: true,
71
+						itemCount: 4,
72
+						scrollShow: true
73
+					},
74
+					yAxis: {
75
+						//disabled:true
76
+					},
77
+					dataLabel: true,
78
+					width: this.cWidth * this.pixelRatio,
79
+					height: this.cHeight * this.pixelRatio,
80
+					extra: {
81
+						column: {
82
+							type: 'group',
83
+						}
84
+					}
85
+				});
86
+			},
87
+			initLineChart() {
88
+				canvases[this.canvasId] = new uCharts({
89
+					$this: this,
90
+					canvasId: this.canvasId,
91
+					type: 'line',
92
+					fontSize: 11,
93
+					legend: true,
94
+					dataLabel: false,
95
+					dataPointShape: true,
96
+					background: '#FFFFFF',
97
+					pixelRatio: this.pixelRatio,
98
+					categories: this.opts.categories,
99
+					series: this.opts.series,
100
+					animation: true,
101
+					enableScroll: true,
102
+					xAxis: {
103
+						type: 'grid',
104
+						gridColor: '#CCCCCC',
105
+						gridType: 'dash',
106
+						dashLength: 8,
107
+						itemCount: 4,
108
+						scrollShow: true
109
+					},
110
+					yAxis: {
111
+						gridType: 'dash',
112
+						gridColor: '#CCCCCC',
113
+						dashLength: 8,
114
+						splitNumber: 5,
115
+						min: 10,
116
+						max: 180,
117
+						format: (val) => {
118
+							return val.toFixed(0) + '元'
119
+						}
120
+					},
121
+					width: this.cWidth * this.pixelRatio,
122
+					height: this.cHeight * this.pixelRatio,
123
+					extra: {
124
+						line: {
125
+							type: 'straight'
126
+						}
127
+					}
128
+				});
129
+			},
130
+			// 这里仅作为示例传入两个参数,cid为canvas-id,newdata为更新的数据,需要更多参数请自行修改
131
+			changeData(cid,newdata) {
132
+				canvases[cid].updateData({
133
+					series: newdata.series,
134
+					categories: newdata.categories
135
+				});
136
+			},
137
+			touchStart(e) {
138
+				canvases[this.canvasId].showToolTip(e, {
139
+					format: function(item, category) {
140
+						return category + ' ' + item.name + ':' + item.data
141
+					}
142
+				});
143
+				canvases[this.canvasId].scrollStart(e);
144
+			},
145
+			touchMove(e) {
146
+				canvases[this.canvasId].scroll(e);
147
+			},
148
+			touchEnd(e) {
149
+				canvases[this.canvasId].scrollEnd(e);
150
+			},
151
+			error(e) {
152
+				console.log(e)
153
+			}
154
+		},
155
+	};
156
+</script>
157
+
158
+<style scoped>
159
+	.charts {
160
+		width: 100%;
161
+		height: 100%;
162
+		flex: 1;
163
+		background-color: #FFFFFF;
164
+	}
165
+</style>

Filskillnaden har hållts tillbaka eftersom den är för stor
+ 5662 - 0
src/components/u-charts/u-charts.js


Filskillnaden har hållts tillbaka eftersom den är för stor
+ 1 - 0
src/components/u-charts/u-charts.min.js


+ 6 - 0
src/pages.json

@@ -93,6 +93,12 @@
93 93
             "style": {
94 94
                 "navigationBarTitleText": "规格价格"
95 95
             }
96
+        },
97
+        {
98
+            "path": "pages/manage/statistics",
99
+            "style": {
100
+                "navigationBarTitleText": "数据统计"
101
+            }
96 102
         }
97 103
     ]
98 104
 }

+ 9 - 0
src/pages/manage/index.vue

@@ -44,6 +44,13 @@
44 44
                 ></my-image>
45 45
                 <span class="text">分类管理</span>
46 46
             </li>
47
+            <li class="item" @click="jump('/pages/manage/statistics')">
48
+                <my-image
49
+                    class="img"
50
+                    src="/static/icon/statistics.png"
51
+                ></my-image>
52
+                <span class="text">数据统计</span>
53
+            </li>
47 54
         </ul>
48 55
 
49 56
         <button class="btn" @click="layout">退出登录</button>
@@ -187,10 +194,12 @@ export default {
187 194
 }
188 195
 .menu {
189 196
     display: flex;
197
+    flex-wrap: wrap;
190 198
     border-top: 1px solid #f1f1f1;
191 199
     .item {
192 200
         width: 33.333333%;
193 201
         height: px(330);
202
+        flex-shrink: 0;
194 203
         display: flex;
195 204
         flex-direction: column;
196 205
         justify-content: center;

+ 254 - 0
src/pages/manage/statistics.vue

@@ -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>

BIN
src/static/icon/statistics.png