3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
116
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
|
<template>
<div style="padding: 10px;">
<div
style="font-weight: bold;font-size: 14px;background-color:#fff;padding: 20px;display:flex;justify-content: space-between;align-items: center">
<div>图表分析</div>
<el-form :inline="true" label-position="left">
<el-form-item label="选择日期">
<el-date-picker v-model="Time" type="daterange" value-format="yyyy-MM-dd" style="width: 240px;margin-top:5px"
range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
</el-date-picker>
</el-form-item>
<el-form-item>
<el-button
style="background-color: #3F9B6A;color: #fff;"
@click="onSubmit"
>查询
</el-button>
<el-button
class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
@click="resetting"
>重置
</el-button>
</el-form-item>
</el-form>
</div>
<div class="zhuti">
<div style="display: flex;">
<div style="width:100%;background-color: #fff;padding:20px 20px 10px 20px;margin-right:20px;">
<div style="">支付渠道监控</div>
<div style="background-color: #F4F4F4;height: 2px;margin:20px 0 10px 0"></div>
<div style="height:350px;width:100%" ref="shopBing">
</div>
</div>
</div>
<div style="margin-top:20px;">
<div style="width:100%;background-color: #fff;padding:20px 20px 10px 20px;">
<div style="">商户交易监控</div>
<div style="background-color: #F4F4F4;height: 2px;margin:20px 0 10px 0"></div>
<div style="height:350px;width:100%" ref="jiankong">
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import {chartAnalysis} from '../../../api/online.js'
import * as echarts from 'echarts';
export default {
data() {
return {
currentPage: 1,
total: 100,
flag: false,
pageSize: 10,
activeName: 'zfb',
tabTitle: '',
jiaosucc:78,
pageindex:{
startTime:"2024-09-11",
endTime:"2024-11-09"
},
Time:[]
}
},
computed: {},
created() {
},
mounted() {
this.getAll()
},
methods: {
getAll(){
chartAnalysis(this.pageindex).then(res=>{
if(res.data.userTraffics &&res.data.paymentChannels ){
this.kong(res.data.userTraffics)
this.shopB(res.data.paymentChannels)
}else{
let data =[]
this.kong(data)
this.shopB(data)
}
})
},
shopB(datas){
let Dom = this.$refs.shopBing
let myChart = echarts.init(Dom)
let processedData = datas.map(item => {
let paymentModeName;
if (item.paymentMode === 1) {
paymentModeName = '微信';
} else {
paymentModeName = item.paymentMode;
}
return {
name: paymentModeName,
value: item.paymentQuantity
}
})
let option = {
tooltip: {
trigger: 'item'
},
legend: {
top: '38%',
left: 'right',
orient:'vertical'
},
series: [
{
name: '营业额',
type: 'pie',
radius: ['40%', '70%'],
avoidLabelOverlap: false,
itemStyle: {
borderRadius: 10,
borderColor: '#fff',
borderWidth: 2
},
label: {
show: false,
position: 'center',
fontSize:'16px'
},
emphasis: {
label: {
show: true,
fontSize: 40,
}
},
labelLine: {
show: false
},
data:processedData
}
]
}
option && myChart.setOption(option)
},
kong(datas){
var chartDom = this.$refs.jiankong
var myChart = echarts.init(chartDom)
let processedData = datas.map(item => ({
name: item.shopName,
value: item.tradingVolume
}))
const option = {
grid: { // 图表距离边框的距离,可用百分比和数字(px)配置
top: '5%',
left: '3%',
right: '10%',
bottom: '5%',
containLabel: true
},
xAxis: {
name: '商家名称',
type: 'category',
data:processedData.map(item => item.name),
},
yAxis: {
type: 'value',
min:0, // 配置 Y 轴刻度最小值
splitNumber:6, // 配置 Y 轴数值间隔
},
series: [
{
name: '实际',
type: 'line',
symbol: 'circle', // 实心圆点
smooth: 0.5, // 设置折线弧度
data: processedData.map(item => item.value),
}
],
color: ['#3366CC'] // 三个折线的颜色
}
option && myChart.setOption(option)
},
onSubmit() {
if(this.Time.length!=0){
this.pageindex.startTime = this.Time[0]
this.pageindex.endTime = this.Time[1]
this.getAll()
}
},
resetting(){
this.pageindex= {
startTime:"2024-09-11",
endTime:"2024-11-09"
},
this.Time=[]
this.getAll()
},
handleSizeChange() {
},
handleCurrentChange() {
}
}
}
</script>
<style scoped>
.zhuti {
margin-top: 20px;
/* padding: 10px 20px 20px 20px; */
/* background-color: #Fff; */
min-height: calc(100vh - 50px - 20px);
position: relative;
}
/deep/ .el-form-item__content {
line-height: 0;
}
|