2f60abcc
杨鑫
最新
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
import {
cereSalesAdd,
cereSalesPage,
getSalesReportingToSalesStatistics
} from '@/api/salesReport';
import {
contractGetAllnew,
edit,
editById
} from '@/api/manage.js'
import * as echarts from 'echarts'
export default {
name: 'atmosphereGl',
data() {
return {
currentPage: 1,
radio1: 0,
total: 100,
flag: false,
pageSize: 10,
tableData: [],
pageindex: {
merchantId: '',
createTime: "",
endTime: "",
list:[]
},
heindex:{
dataStatus: '1',
pageNumber: 0,
pageSize: 10,
contractType:'商铺合同'
},
listType:[]
}
},
computed: {},
mounted() {
this.getAll()
this.getShop()
|
2f60abcc
杨鑫
最新
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
|
},
methods: {
search(){
if(this.pageindex.list.length!=0){
this.pageindex.createTime = this.pageindex.list[0]+' 00:00:00'
this.pageindex.endTime = this.pageindex.list[1]+' 23:59:59'
}
this.getAll()
},
clear(){
this.pageindex={
merchantId: '',
createTime: "",
endTime: "",
list:[]
}
this.getAll()
},
charDam(val) {
// val.sort((a, b) => b.sales - a.sales)
// 处理数据,前 5 显示名称,6 往后合并为“其余商品”
let top5Data = val.slice(0, 5)
let otherSales = val.slice(5).reduce((total, item) => total + Number(item.proportion), 0)
if (otherSales > 0) {
top5Data.push({
brand: '其他品牌',
proportion: otherSales
})
}
// 获取图表容器的 DOM 元素
const chartDom = this.$refs.shop2TJ
// 初始化 ECharts 实例
const myChart = echarts.init(chartDom);
// 配置 ECharts 选项
const option = {
color: [
'#3F9B6A', '#40fcff', '#7d29d0', '#c438a3', '#256c9b', '#ef8c4a'
],
tooltip: {
trigger: 'item',
formatter: '{a} <br/>{b}: {c} ({d}%)'
},
legend: {
orient: 'vertical', // 图例竖着显示
right: '5%', // 图例位于图表右边
top: 'center' // 图例垂直居中
},
emphasis: {
label: {
show: true,
fontSize: 40,
fontWeight: 'bold'
}
},
series: [{
name: '商品销售占比',
type: 'pie',
radius: ['40%', '70%'],
avoidLabelOverlap: false,
data: top5Data.map(item => ({
name: item.productName,
value: item.proportion
})),
labelLine: {
show: false
},
label: {
show: false,
position: 'center'
},
},
]
};
// 使用刚指定的配置项和数据显示图表
option && myChart.setOption(option)
window.addEventListener('resize', function() {
myChart.resize();
})
},
charDam1(val) {
const chartDom = this.$refs.shop1ZX;
const myChart = echarts.init(chartDom)
val.sort((a, b) => a.salesQuantity - b.salesQuantity)
const productNames = val.map(item => item.productName)
const salesData = val.map(item => item.salesQuantity)
// 配置 ECharts 选项
const option = {
grid: {
left: '8%',
right: '5%',
top: '8%',
bottom: '8%',
containLabel: true
},
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
xAxis: {
type: 'value',
axisLine: {
lineStyle: {
color: '#666'
}
},
splitLine: {
show: false
}
},
yAxis: {
type: 'category',
data: productNames,
axisLine: {
lineStyle: {
color: '#666'
}
},
axisTick: {
show: true,
lineStyle: {
color: '#666'
}
},
axisLabel: {
interval: 0,
margin: 10
}
},
series: [{
name: '销售数量',
type: 'bar',
data: salesData,
color: '#3f9b6a',
barWidth: 30,
// 关键调整:增大 barCategoryGap 值,增加类目(数据)之间的间隙
barCategoryGap: '50%', // 原为 40%,调整为 60% 增加间隙
barGap: '20%',
itemStyle: {
emphasis: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.3)'
}
},
animation: true
}]
};
option && myChart.setOption(option);
window.addEventListener('resize', () => myChart.resize());
},
charDam3(val) {
|
2f60abcc
杨鑫
最新
|
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
// const salesData = val.map(item => item.price)
let option = {
legend: {},
tooltip: {},
xAxis: {
type: 'category',
data: productNames
},
yAxis: {
type: 'value',
// max: 1000,
},
grid: {
left: '1%',
right: '1%',
top: '5%',
bottom: '6%',
containLabel: true
},
series: [{
type: 'bar',
color: '#3f9b6a',
data: val.map(item => ({
name: item.saleDay,
value: item.price
})),
}]
};
option && myChart.setOption(option);
window.addEventListener('resize', function() {
myChart.resize();
})
},
charDam5(val) {
// 处理数据,前 5 显示名称,6 往后合并为“其余商品”
let top5Data = val.slice(0, 5)
let otherSales = val.slice(5).reduce((total, item) => total + Number(item.proportion), 0)
if (otherSales > 0) {
top5Data.push({
brand: '其余商品',
proportion: otherSales
})
}
// 获取图表容器的 DOM 元素
const chartDom = this.$refs.shop3QS
// 初始化 ECharts 实例
const myChart = echarts.init(chartDom);
// 配置 ECharts 选项
const option = {
color: [
'#3F9B6A', '#40fcff', '#7d29d0', '#c438a3', '#256c9b', '#ef8c4a'
],
tooltip: {
trigger: 'item',
formatter: '{a} <br/>{b}: {c} ({d}%)'
},
legend: {
orient: 'vertical', // 图例竖着显示
right: '5%', // 图例位于图表右边
top: 'center' // 图例垂直居中
},
emphasis: {
label: {
show: true,
fontSize: 40,
fontWeight: 'bold'
}
},
series: [{
|
2f60abcc
杨鑫
最新
|
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
|
type: 'pie',
radius: ['40%', '70%'],
avoidLabelOverlap: false,
data: top5Data.map(item => ({
name: item.brand,
value: item.proportion
})),
labelLine: {
show: false
},
label: {
show: false,
position: 'center'
},
},
]
};
// 使用刚指定的配置项和数据显示图表
option && myChart.setOption(option)
window.addEventListener('resize', function() {
myChart.resize();
})
},
async getAll() {
const res = await getSalesReportingToSalesStatistics(this.pageindex)
this.charDam1(res.data.cereSalesReportingToHotProductVOS)
this.charDam(res.data.cereSalesReportingToProportionGoodsSoldVOS)
this.charDam5(res.data.cereSalesReportingToProportionBrandSalesVOS)
|