Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
73830133
Commit
73830133
authored
Jan 25, 2025
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交数据
parent
83cf0cb7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
904 additions
and
4 deletions
+904
-4
Semibold.css
src/assets/css/Semibold.css
+2
-2
coreview.vue
src/components/rank/components/coreview.vue
+168
-0
customer.vue
src/components/rank/components/customer.vue
+210
-0
dataCount.vue
src/components/rank/dataCount.vue
+514
-0
index.js
src/plug/index.js
+1
-1
config.js
src/router/config.js
+9
-1
No files found.
src/assets/css/Semibold.css
View file @
73830133
...
...
@@ -49,10 +49,10 @@
font-family
:
'方正宋三简体'
;
src
:
url('../webfont/FZSSJ.ttf')
format
(
'truetype'
)
}
@font-face
{
/*
@font-face{
font-family:'PingFang SC';
src:url('../webfont/Semibold.woff') format('woff')
}
}
*/
@font-face
{
font-family
:
'PingFang SC Regular'
;
src
:
url('../webfont/pingfang.ttf')
format
(
'truetype'
)
...
...
src/components/rank/components/coreview.vue
0 → 100644
View file @
73830133
<
template
>
<div
id=
"coreview"
style=
"width: 100%; height: 100%;"
></div>
</
template
>
<
script
>
import
echarts
from
'echarts'
;
export
default
{
name
:
'CustomChart'
,
data
()
{
return
{
chart
:
null
,
lineData
:
{
name
:
'新增激活数'
,
data
:
[
105
,
219
,
142
,
297
,
176
,
84
,
233
,
120
,
265
,
199
,
207
,
91
,
251
,
153
,
281
,
113
,
224
,
168
,
246
,
131
,
273
,
185
,
99
,
237
,
147
,
292
,
109
,
214
,
171
,
260
],
},
xAxisData
:
[
'11/01'
,
'11/02'
,
'11/03'
,
'11/04'
,
'11/05'
,
'11/06'
,
'11/07'
,
'11/08'
,
'11/09'
,
'11/10'
,
'11/11'
,
'11/12'
,
'11/13'
,
'11/14'
,
'11/15'
,
'11/16'
,
'11/17'
,
'11/18'
,
'11/19'
,
'11/20'
,
'11/21'
,
'11/22'
,
'11/23'
,
'11/24'
,
'11/25'
,
'11/26'
,
'11/27'
,
'11/28'
,
'11/29'
,
'11/30'
],
unit
:
'人'
};
},
props
:
{
chartData
:
{
type
:
Object
,
default
:
null
}
},
mounted
()
{
if
(
this
.
chartData
)
{
this
.
lineData
=
this
.
chartData
.
lineData
;
this
.
unit
=
this
.
chartData
.
unit
;
this
.
xAxisData
=
this
.
chartData
.
xAxisData
;
}
this
.
initChart
();
},
methods
:
{
initChart
()
{
const
chartDom
=
document
.
getElementById
(
'coreview'
);
this
.
chart
=
echarts
.
init
(
chartDom
);
const
option
=
{
tooltip
:
{
trigger
:
'axis'
,
// 设置为 'axis' 以确保鼠标悬浮在曲线任意位置时都能触发事件
axisPointer
:
{
type
:
'line'
,
// 使用竖线跟随鼠标
lineStyle
:
{
color
:
'#00000022'
,
width
:
1
,
type
:
'dashed'
,
}
},
},
grid
:
{
left
:
0
,
right
:
0
,
top
:
10
,
bottom
:
0
,
containLabel
:
true
,
},
xAxis
:
{
type
:
'category'
,
data
:
this
.
xAxisData
,
axisLine
:
{
lineStyle
:
{
color
:
'#eee'
,
},
},
xAxisLabel
:
{
show
:
true
,
color
:
'#999'
,
},
axisLabel
:
{
color
:
'#121212'
,
interval
:
this
.
calculateInterval
(
this
.
xAxisData
.
length
)
},
axisTick
:
{
show
:
false
,
},
axisPointer
:
{
type
:
'line'
}
},
yAxis
:
{
type
:
'value'
,
name
:
''
,
axisLine
:
{
show
:
false
,
},
splitLine
:
{
show
:
true
,
lineStyle
:
{
type
:
'dashed'
,
color
:
'#eee'
,
},
},
axisTick
:
{
show
:
false
,
},
axisLabel
:
{
formatter
:
'{value} '
+
this
.
unit
,
},
},
series
:
[
{
name
:
this
.
lineData
.
name
,
type
:
'line'
,
smooth
:
true
,
areaStyle
:
{
// Add gradient color for the area
color
:
new
echarts
.
graphic
.
LinearGradient
(
0
,
0
,
0
,
1
,
[
{
offset
:
0
,
color
:
'#e4f9f0'
},
{
offset
:
1
,
color
:
'#ffffff'
}
]),
},
lineStyle
:
{
color
:
'#04cf89'
,
width
:
2
,
},
itemStyle
:
{
color
:
'#04cf89'
,
},
symbol
:
'circle'
,
symbolSize
:
2
,
data
:
this
.
lineData
.
data
,
},
],
};
this
.
chart
.
setOption
(
option
);
},
resizeChart
()
{
if
(
this
.
chart
)
{
this
.
chart
.
resize
();
}
},
calculateInterval
(
length
)
{
if
(
length
<=
10
)
{
return
0
;
// 数据较少时全部显示
}
else
if
(
length
<=
20
)
{
return
1
;
// 每两个显示一个
}
else
if
(
length
<=
30
)
{
return
2
;
// 每三个显示一个
}
else
{
return
Math
.
floor
(
length
/
10
);
// 根据数据数量动态计算间隔
}
},
},
destroyed
()
{
if
(
this
.
chart
)
{
this
.
chart
.
dispose
();
}
},
};
</
script
>
<
style
scoped
>
#chart
{
width
:
100%
;
height
:
100%
;
}
</
style
>
\ No newline at end of file
src/components/rank/components/customer.vue
0 → 100644
View file @
73830133
<
template
>
<div
id=
"chart"
style=
"width: 100%; height: 100%;"
></div>
</
template
>
<
script
>
import
echarts
from
'echarts'
;
export
default
{
name
:
'CustomChart'
,
data
()
{
return
{
chart
:
null
,
barData
:
{
name
:
'新增同业数'
,
data
:
[
123
,
211
,
178
,
289
,
90
,
156
,
222
,
101
,
267
,
199
,
125
,
291
,
187
,
92
,
243
,
148
,
212
,
117
,
279
,
103
,
137
,
256
,
221
,
193
,
88
,
283
,
165
,
111
,
239
,
107
],
},
lineData
:
{
name
:
'新增激活数'
,
data
:
[
105
,
219
,
142
,
297
,
176
,
84
,
233
,
120
,
265
,
199
,
207
,
91
,
251
,
153
,
281
,
113
,
224
,
168
,
246
,
131
,
273
,
185
,
99
,
237
,
147
,
292
,
109
,
214
,
171
,
260
],
},
xAxisData
:
[
'11/01'
,
'11/02'
,
'11/03'
,
'11/04'
,
'11/05'
,
'11/06'
,
'11/07'
,
'11/08'
,
'11/09'
,
'11/10'
,
'11/11'
,
'11/12'
,
'11/13'
,
'11/14'
,
'11/15'
,
'11/16'
,
'11/17'
,
'11/18'
,
'11/19'
,
'11/20'
,
'11/21'
,
'11/22'
,
'11/23'
,
'11/24'
,
'11/25'
,
'11/26'
,
'11/27'
,
'11/28'
,
'11/29'
,
'11/30'
],
unit
:
'人'
,
};
},
props
:
{
chartData
:
{
type
:
Object
,
default
:
null
}
},
mounted
()
{
if
(
this
.
chartData
)
{
this
.
barData
=
this
.
chartData
.
barData
;
this
.
lineData
=
this
.
chartData
.
lineData
;
this
.
unit
=
this
.
chartData
.
unit
;
this
.
xAxisData
=
this
.
chartData
.
xAxisData
;
}
this
.
initChart
();
},
methods
:
{
initChart
()
{
const
chartDom
=
document
.
getElementById
(
'chart'
);
this
.
chart
=
echarts
.
init
(
chartDom
);
const
option
=
{
tooltip
:
{
trigger
:
'axis'
,
// 设置为 'axis' 以确保鼠标悬浮在曲线任意位置时都能触发事件
axisPointer
:
{
type
:
'line'
,
// 使用竖线跟随鼠标
lineStyle
:
{
color
:
'#00000022'
,
width
:
1
,
type
:
'dashed'
,
}
},
},
legend
:
{
bottom
:
10
,
icon
:
'circle'
,
itemWidth
:
8
,
itemHeight
:
8
,
textStyle
:
{
fontSize
:
12
,
},
data
:
[
this
.
barData
.
name
,
this
.
lineData
.
name
],
},
grid
:
{
left
:
0
,
right
:
0
,
top
:
30
,
bottom
:
40
,
containLabel
:
true
,
},
xAxis
:
{
type
:
'category'
,
data
:
this
.
xAxisData
,
axisLine
:
{
lineStyle
:
{
color
:
'#eee'
,
},
},
xAxisLabel
:
{
show
:
true
,
color
:
'#999'
,
},
axisLabel
:
{
color
:
'#121212'
,
interval
:
this
.
calculateInterval
(
this
.
xAxisData
.
length
)
},
axisTick
:
{
show
:
false
,
},
axisPointer
:
{
type
:
'line'
}
},
yAxis
:
{
type
:
'value'
,
name
:
''
,
axisLine
:
{
show
:
false
,
},
splitLine
:
{
show
:
true
,
lineStyle
:
{
type
:
'dashed'
,
color
:
'#eee'
,
},
},
axisTick
:
{
show
:
false
,
},
axisLabel
:
{
formatter
:
'{value} '
+
this
.
unit
,
},
},
series
:
[
{
name
:
this
.
barData
.
name
,
type
:
'bar'
,
barWidth
:
20
,
itemStyle
:
{
color
:
'#6184fa'
,
barBorderRadius
:
[
4
,
4
,
0
,
0
]
},
data
:
this
.
barData
.
data
,
},
{
name
:
this
.
lineData
.
name
,
type
:
'line'
,
smooth
:
true
,
lineStyle
:
{
color
:
'#04cf89'
,
width
:
2
,
},
itemStyle
:
{
color
:
'#04cf89'
,
},
symbol
:
'circle'
,
symbolSize
:
2
,
data
:
this
.
lineData
.
data
,
},
],
};
this
.
chart
.
setOption
(
option
);
// this.chart.on('mouseover', (params) => {
// console.log(params);
// this.setOpacity(params.seriesName);
// });
// // 监听鼠标离开事件
// this.chart.on('mouseout', () => {
// this.setOpacity('');
// });
},
setOpacity
(
seriesName
)
{
const
option
=
this
.
chart
.
getOption
();
option
.
series
.
forEach
((
series
)
=>
{
console
.
log
(
series
.
name
,
seriesName
+
'----'
)
if
(
seriesName
==
''
)
{
if
(
series
.
itemStyle
)
series
.
itemStyle
.
opacity
=
1
;
if
(
series
.
lineStyle
)
series
.
lineStyle
.
opacity
=
1
;
}
else
if
(
series
.
name
!=
seriesName
)
{
if
(
series
.
itemStyle
)
series
.
itemStyle
.
opacity
=
0.1
;
if
(
series
.
lineStyle
)
series
.
lineStyle
.
opacity
=
0.1
;
}
});
this
.
chart
.
setOption
(
option
);
},
resizeChart
()
{
if
(
this
.
chart
)
{
this
.
chart
.
resize
();
}
},
calculateInterval
(
length
)
{
if
(
length
<=
10
)
{
return
0
;
// 数据较少时全部显示
}
else
if
(
length
<=
20
)
{
return
1
;
// 每两个显示一个
}
else
if
(
length
<=
30
)
{
return
2
;
// 每三个显示一个
}
else
{
return
Math
.
floor
(
length
/
10
);
// 根据数据数量动态计算间隔
}
},
},
destroyed
()
{
if
(
this
.
chart
)
{
this
.
chart
.
dispose
();
}
},
};
</
script
>
<
style
scoped
>
#chart
{
width
:
100%
;
height
:
100%
;
}
</
style
>
\ No newline at end of file
src/components/rank/dataCount.vue
0 → 100644
View file @
73830133
This diff is collapsed.
Click to expand it.
src/plug/index.js
View file @
73830133
...
...
@@ -123,7 +123,7 @@ export default {
let
isOnline
=
0
;
//0-本地测试,1-线上
let
ocrUrl
=
"http://192.168.5.46:8888"
;
domainUrl
=
"http://192.168.5.39:8083"
;
domainUrl
=
"http://192.168.5.
56
"
;
domainUrl
=
"http://192.168.5.
46:8501
"
;
// domainUrl = "http://reborn.oytour.com";
let
crmLocalFileStreamDownLoadUrl
=
""
;
crmLocalFileStreamDownLoadUrl
=
locationName
.
indexOf
(
'oytour'
)
!==
-
1
?
"http://crm.oytour.com"
:
"http://testcrm.oytour.com"
;
...
...
src/router/config.js
View file @
73830133
...
...
@@ -6277,7 +6277,15 @@ export default {
meta
:
{
title
:
'维护教育视频'
},
}
},
{
path
:
'/data_count'
,
//维护教育视频
name
:
'data_count'
,
component
:
resolve
=>
require
([
'@/components/rank/dataCount'
],
resolve
),
meta
:
{
title
:
'客户运营数据统计'
},
},
]
},
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment