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
6c3d22e8
Commit
6c3d22e8
authored
Jan 25, 2025
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
绑定
parent
3c4bfc2f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
776 additions
and
421 deletions
+776
-421
coreview.vue
src/components/rank/components/coreview.vue
+12
-12
dataCount.vue
src/components/rank/dataCount.vue
+764
-409
No files found.
src/components/rank/components/coreview.vue
View file @
6c3d22e8
...
...
@@ -10,18 +10,8 @@ export default {
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'
],
lineData
:
{},
xAxisData
:
[],
unit
:
'人'
};
},
...
...
@@ -31,6 +21,16 @@ export default {
default
:
null
}
},
watch
:
{
chartData
:
function
(
old
,
val
)
{
if
(
this
.
chartData
)
{
this
.
lineData
=
this
.
chartData
.
lineData
;
this
.
unit
=
this
.
chartData
.
unit
;
this
.
xAxisData
=
this
.
chartData
.
xAxisData
;
}
this
.
initChart
();
}
},
mounted
()
{
if
(
this
.
chartData
)
{
this
.
lineData
=
this
.
chartData
.
lineData
;
...
...
src/components/rank/dataCount.vue
View file @
6c3d22e8
...
...
@@ -4,18 +4,44 @@
<div
class=
"row items-center"
style=
"margin-bottom: 20px;"
>
<div
class=
"page-title col"
>
平台数据
</div>
<div
class=
"row items-center"
>
<el-select
v-model=
"parameters.branchId"
style=
"margin-right: 20px;"
@
change=
"getCustomerStatic()"
>
<el-option
v-for=
"(x,i) in branchs"
:key=
"i"
:label=
"x.BName"
:value=
"x.Id"
></el-option>
<el-select
v-model=
"parameters.branchId"
style=
"margin-right: 20px;"
@
change=
"handleDateChange()"
>
<el-option
v-for=
"(x, i) in branchs"
:key=
"i"
:label=
"x.BName"
:value=
"x.Id"
></el-option>
</el-select>
<el-date-picker
v-model=
"parameters.dateRange"
type=
"daterange"
align=
"right"
unlink-panels
@
change=
"getCustomerStatic()"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
value-format=
"yyyy/MM/dd"
:clearable=
"false"
:picker-options=
"pickerOptions"
>
<el-date-picker
v-model=
"parameters.dateRange"
type=
"daterange"
align=
"right"
unlink-panels
@
change=
"handleDateChange()"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
value-format=
"yyyy/MM/dd"
:clearable=
"false"
:picker-options=
"pickerOptions"
>
</el-date-picker>
</div>
</div>
<div
class=
"card rounded row items-center"
>
<div
class=
"menu-item"
:class=
"
{'active':i==active}" v-for="(x,i) in menus" :key="i" @click="handleClick(i)">
{{
x
.
title
}}
</div>
<div
class=
"menu-item"
:class=
"
{ active: i == active }"
v-for="(x, i) in menus"
:key="i"
@click="handleClick(i)"
>
{{
x
.
title
}}
</div>
</div>
<div
class=
"sub-title q-my-md"
>
今日实时数据
</div>
<div
class=
"card rounded big"
>
...
...
@@ -32,20 +58,23 @@
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
<template
v-if=
"customerObj"
>
{{
customerObj
.
TotalCustomerCount
}}
{{
customerObj
.
TotalCustomerCount
}}
</
template
>
</span>
<span>
个
</span>
</div>
<div
class=
"text-info"
>
</div>
<div
class=
"text-info"
>
</div>
</div>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<div
class=
"data-items col"
>
<div>
今日新增客户
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
<
template
v-if=
"customerObj"
>
{{
customerObj
.
TodayCustomerCount
}}
{{
customerObj
.
TodayCustomerCount
}}
</
template
>
</span>
<span>
个
</span>
...
...
@@ -53,11 +82,15 @@
<div
class=
"text-info"
>
<span>
较昨日
</span>
<
template
v-if=
"customerObj"
>
<template
v-if=
"customerObj.CustomerPercent>0"
>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
{{
customerObj
.
CustomerPercent
}}
%
</span>
<template
v-if=
"customerObj.CustomerPercent > 0"
>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
{{
customerObj
.
CustomerPercent
}}
%
</span
>
</
template
>
<
template
v-else
>
<span
class=
"red"
style=
"margin-left: 5px;"
>
{{
customerObj
.
CustomerPercent
}}
%
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
{{
customerObj
.
CustomerPercent
}}
%
</span
>
</
template
>
</template>
</div>
...
...
@@ -68,8 +101,9 @@
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
<
template
v-if=
"customerObj"
>
{{
customerObj
.
TotalActivationCount
}}
</
template
></span>
{{
customerObj
.
TotalActivationCount
}}
</
template
></span
>
<span>
个
</span>
</div>
<div
class=
"text-info"
>
</div>
...
...
@@ -79,19 +113,25 @@
<div
class=
"data-items col"
>
<div>
今日激活数
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
><
template
v-if=
"customerObj"
>
{{
customerObj
.
TodayActivationCount
}}
</
template
></span>
<span
class=
"datanum"
><
template
v-if=
"customerObj"
>
{{
customerObj
.
TodayActivationCount
}}
</
template
></span
>
<span>
个
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<
template
v-if=
"customerObj"
>
<template
v-if=
"customerObj.ActivationPrecent>0"
>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
{{
customerObj
.
ActivationPrecent
}}
%
</span>
<template
v-if=
"customerObj.ActivationPrecent > 0"
>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
{{
customerObj
.
ActivationPrecent
}}
%
</span
>
</
template
>
<
template
v-else
>
<span
class=
"red"
style=
"margin-left: 5px;"
>
{{
customerObj
.
ActivationPrecent
}}
%
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
{{
customerObj
.
ActivationPrecent
}}
%
</span
>
</
template
>
</template>
</div>
...
...
@@ -103,7 +143,7 @@
<div
class=
"sub-title"
>
客户数据走势
</div>
<div
class=
""
>
<span
class=
"dot"
></span>
<span
class=
"text-info"
>
{{ parameters.dateRange.join(
'-'
) }}
</span>
<span
class=
"text-info"
>
{{ parameters.dateRange.join(
"-"
) }}
</span>
</div>
</div>
<div
style=
"height: 320px;"
>
...
...
@@ -118,11 +158,18 @@
<div
class=
"sub-title"
>
今日客户数据
</div>
<div
class=
""
>
<span
class=
"dot"
></span>
<span
class=
"text-info"
>
{{ parameters.dateRange.join(' - ') }}
</span>
<span
class=
"text-info"
>
{{
parameters.dateRange.join(" - ")
}}
</span>
</div>
</div>
<el-select
v-model=
"platformId"
style=
"width: 140px;"
>
<el-option
v-for=
"(x,i) in platforms"
:key=
"i"
:label=
"x.Name"
:value=
"x.Id"
></el-option>
<el-option
v-for=
"(x, i) in platforms"
:key=
"i"
:label=
"x.Name"
:value=
"x.Id"
></el-option>
</el-select>
</div>
<div
class=
"q-mt-md row items-center"
>
...
...
@@ -133,7 +180,10 @@
<span>
元
</span>
</div>
</div>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<div
class=
"data-items col"
>
<div>
收客人数
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
...
...
@@ -165,7 +215,9 @@
<div
class=
"sub-title"
>
交易趋势图
</div>
<div
class=
""
>
<span
class=
"dot"
></span>
<span
class=
"text-info"
>
{{ parameters.dateRange.join(' - ') }}
</span>
<span
class=
"text-info"
>
{{
parameters.dateRange.join(" - ")
}}
</span>
</div>
</div>
<div
style=
"height: 320px;"
>
...
...
@@ -179,64 +231,133 @@
<div
class=
"sub-title"
>
用户活跃概况
</div>
<div
class=
""
>
<span
class=
"dot"
></span>
<span
class=
"text-info"
>
数据更新:{{ parameters.dateRange[1] }}
</span>
<span
class=
"text-info"
>
数据更新:{{ parameters.dateRange[1] }}
</span
>
</div>
</div>
<div
class=
"q-mt-md row items-center"
>
<div
class=
"data-items col"
>
<div>
小程序累计用户数
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
26052
</span>
<span
class=
"datanum"
>
{{ baseWechatData.Visit_Total }}
</span>
<span>
人
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
+23%
</span>
<span
:class=
"{
red: baseWechatData.Visit_TotalYRate < 0,
green: baseWechatData.Visit_TotalYRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Visit_TotalYRate > 0 ? "+" : "" }}
{{ baseWechatData.Visit_TotalYRate }}%
</span
>
<span>
较七日前
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
-125%
</span>
<span
:class=
"{
red: baseWechatData.Visit_TotalSRate < 0,
green: baseWechatData.Visit_TotalSRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Visit_TotalSRate > 0 ? "+" : "" }}
{{ baseWechatData.Visit_TotalSRate }}%
</span
>
</div>
</div>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<div
class=
"data-items col"
>
<div>
日访问人数
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
89
</span>
<span
class=
"datanum"
>
{{ baseWechatData.Visit_UV }}
</span>
<span>
人
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
+23%
</span>
<span
:class=
"{
red: baseWechatData.Visit_UVYRate < 0,
green: baseWechatData.Visit_UVYRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Visit_UVYRate > 0 ? "+" : "" }}
{{ baseWechatData.Visit_UVYRate }}%
</span
>
<span>
较七日前
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
-125%
</span>
<span
:class=
"{
red: baseWechatData.Visit_UVSRate < 0,
green: baseWechatData.Visit_UVSRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Visit_UVSRate > 0 ? "+" : "" }}
{{ baseWechatData.Visit_UVSRate }}%
</span
>
</div>
</div>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;"
></el-divider>
<div
class=
"data-items col"
>
<div>
日打开次数
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
455
</span>
<span
class=
"datanum"
>
{{ baseWechatData.Session_CNT }}
</span>
<span>
人
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
+23%
</span>
<span
:class=
"{
red: baseWechatData.Session_CNTYRate < 0,
green: baseWechatData.Session_CNTYRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Session_CNTYRate > 0 ? "+" : "" }}
{{ baseWechatData.Session_CNTYRate }}%
</span
>
<span>
较七日前
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
-125%
</span>
<span
:class=
"{
red: baseWechatData.Session_CNTSRate < 0,
green: baseWechatData.Session_CNTSRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Session_CNTSRate > 0 ? "+" : "" }}
{{ baseWechatData.Session_CNTSRate }}%
</span
>
</div>
</div>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;"
></el-divider>
<div
class=
"data-items col"
>
<div>
日
访问页面
数
</div>
<div>
日
转发人
数
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
26052
</span>
<span>
个
</span>
<span
class=
"datanum"
>
{{ baseWechatData.Share_UV }}
</span>
<span>
人
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
+23%
</span>
<span
:class=
"{
red: baseWechatData.Share_UVYRate < 0,
green: baseWechatData.Share_UVYRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Share_UVYRate > 0 ? "+" : "" }}
{{ baseWechatData.Share_UVYRate }}%
</span
>
<span>
较七日前
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
-125%
</span>
<span
:class=
"{
red: baseWechatData.Share_UVSRate < 0,
green: baseWechatData.Share_UVSRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Share_UVSRate > 0 ? "+" : "" }}
{{ baseWechatData.Share_UVSRate }}%
</span
>
</div>
</div>
</div>
...
...
@@ -248,35 +369,72 @@
<div
class=
"sub-title"
>
新增用户概况
</div>
<div
class=
""
>
<span
class=
"dot"
></span>
<span
class=
"text-info"
>
数据更新:{{ parameters.dateRange[1]}}
</span>
<span
class=
"text-info"
>
数据更新:{{ parameters.dateRange[1] }}
</span
>
</div>
</div>
<div
class=
"q-mt-md row items-center"
>
<div
class=
"data-items col"
>
<div>
日新增用户
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
26052
</span>
<span
class=
"datanum"
>
{{ baseWechatData.Visit_UV_New }}
</span>
<span>
人
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
+23%
</span>
<span
:class=
"{
red: baseWechatData.Visit_UV_NewYRate < 0,
green: baseWechatData.Visit_UV_NewYRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Visit_UV_NewYRate > 0 ? "+" : "" }}
{{ baseWechatData.Visit_UV_NewYRate }}%
</span
>
<span>
较七日前
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
-125%
</span>
<span
:class=
"{
red: baseWechatData.Visit_UV_NewSRate < 0,
green: baseWechatData.Visit_UV_NewSRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Visit_UV_NewSRate > 0 ? "+" : "" }}
{{ baseWechatData.Visit_UV_NewSRate }}%
</span
>
</div>
</div>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<div
class=
"data-items col"
>
<div>
日转发次数
</div>
<div>
人均停留时长
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
89
</span>
<span>
人
</span>
<span
class=
"datanum"
>
{{ baseWechatData.Stay_Time_UV }}
</span>
<span>
秒
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
+23%
</span>
<span
:class=
"{
red: baseWechatData.Stay_Time_UVYRate < 0,
green: baseWechatData.Stay_Time_UVYRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Stay_Time_UVYRate > 0 ? "+" : "" }}
{{ baseWechatData.Stay_Time_UVYRate }}%
</span
>
<span>
较七日前
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
-125%
</span>
<span
:class=
"{
red: baseWechatData.Stay_Time_UVSRate < 0,
green: baseWechatData.Stay_Time_UVSRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.Stay_Time_UVSRate > 0 ? "+" : "" }}
{{ baseWechatData.Stay_Time_UVSRate }}%
</span
>
</div>
</div>
</div>
...
...
@@ -286,35 +444,72 @@
<div
class=
"sub-title"
>
小程序留存概况
</div>
<div
class=
""
>
<span
class=
"dot"
></span>
<span
class=
"text-info"
>
数据更新: {{ parameters.dateRange[1] }}
</span>
<span
class=
"text-info"
>
数据更新: {{ parameters.dateRange[1] }}
</span
>
</div>
</div>
<div
class=
"q-mt-md row items-center"
>
<div
class=
"data-items col"
>
<div>
新增用户留存
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
26052
</span>
<span
class=
"datanum"
>
{{ baseWechatData.NewVisitUV }}
</span>
<span>
人
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
+23%
</span>
<span
:class=
"{
red: baseWechatData.NewVisitUVYRate < 0,
green: baseWechatData.NewVisitUVYRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.NewVisitUVYRate > 0 ? "+" : "" }}
{{ baseWechatData.NewVisitUVYRate }}%
</span
>
<span>
较七日前
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
-125%
</span>
<span
:class=
"{
red: baseWechatData.NewVisitUVSRate < 0,
green: baseWechatData.NewVisitUVSRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.NewVisitUVSRate > 0 ? "+" : "" }}
{{ baseWechatData.NewVisitUVSRate }}%
</span
>
</div>
</div>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<el-divider
direction=
"vertical"
style=
"margin: 0 12px;height: 80%;"
></el-divider>
<div
class=
"data-items col"
>
<div>
活跃用户留存数
</div>
<div
class=
"num"
style=
"margin: 6px 0;"
>
<span
class=
"datanum"
>
89
</span>
<span
class=
"datanum"
>
{{ baseWechatData.VisitUV }}
</span>
<span>
人
</span>
</div>
<div
class=
"text-info"
>
<span>
较昨日
</span>
<span
class=
"green"
style=
"margin:0 12px 0 5px;"
>
+23%
</span>
<span
:class=
"{
red: baseWechatData.VisitUVYRate < 0,
green: baseWechatData.VisitUVYRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.VisitUVYRate > 0 ? "+" : "" }}
{{ baseWechatData.VisitUVYRate }}%
</span
>
<span>
较七日前
</span>
<span
class=
"red"
style=
"margin-left: 5px;"
>
-125%
</span>
<span
:class=
"{
red: baseWechatData.VisitUVSRate < 0,
green: baseWechatData.VisitUVSRate >= 0
}"
style=
"margin:0 12px 0 5px;"
>
{{ baseWechatData.VisitUVSRate > 0 ? "+" : "" }}
{{ baseWechatData.VisitUVSRate }}%
</span
>
</div>
</div>
</div>
...
...
@@ -326,16 +521,24 @@
<div
class=
"col"
>
<div
class=
"sub-title"
>
访问核心指标趋势
</div>
<div
class=
""
>
<span
class=
"text-info"
>
{{ parameters.dateRange.join(' - ') }}
</span>
<span
class=
"text-info"
>
{{
parameters.dateRange.join(" - ")
}}
</span>
</div>
</div>
<el-select
v-model=
"coreId"
style=
"width: 120px;"
>
<el-option
v-for=
"(x,i) in coreLists"
:key=
"i"
:label=
"x.Name"
:value=
"x.Id"
></el-option>
<el-select
v-model=
"coreId"
style=
"width: 140px; text-align: right;"
@
change=
"formatCoreTrend()"
>
<el-option
v-for=
"(x, i) in coreLists"
:key=
"i"
:label=
"x.Name"
:value=
"x.Id"
></el-option>
</el-select>
</div>
<div
class=
"text-small q-my-md"
style=
"padding:0 12px;"
>
平均:
22.7
</div>
<div
class=
"text-small q-my-md"
style=
"padding:0 12px;"
>
平均:
{{ currentCoreObj.avg }}{{ currentCoreObj.unit }}
</div>
<div
style=
"height: 320px; padding:0 12px"
>
<Coreview></Coreview>
<Coreview
:chart-data=
"currentCoreObj"
v-if=
"currentCoreObj"
></Coreview>
</div>
</div>
...
...
@@ -345,11 +548,18 @@
<div
class=
"col"
>
<div
class=
"sub-title"
>
页面访问Top10
</div>
<div
class=
""
>
<span
class=
"text-info"
>
{{ parameters.dateRange.join(' - ') }}
</span>
<span
class=
"text-info"
>
{{
parameters.dateRange.join(" - ")
}}
</span>
</div>
</div>
<el-select
v-model=
"metricsId"
style=
"width: 140px;"
>
<el-option
v-for=
"(x,i) in metrics"
:key=
"i"
:label=
"x.name"
:value=
"x.id"
></el-option>
<el-option
v-for=
"(x, i) in metrics"
:key=
"i"
:label=
"x.name"
:value=
"x.id"
></el-option>
</el-select>
</div>
<div
style=
"height: 320px; padding:0 12px;"
class=
"q-mt-md"
>
...
...
@@ -361,11 +571,18 @@
<div
class=
"col"
>
<div
class=
"sub-title"
>
客户分布占比
</div>
<div
class=
""
>
<span
class=
"text-info"
>
{{ parameters.dateRange.join(' - ') }}
</span>
<span
class=
"text-info"
>
{{
parameters.dateRange.join(" - ")
}}
</span>
</div>
</div>
<el-select
v-model=
"areaId"
style=
"width: 140px;"
>
<el-option
v-for=
"(x,i) in areas"
:key=
"i"
:label=
"x.Name"
:value=
"x.Id"
></el-option>
<el-option
v-for=
"(x, i) in areas"
:key=
"i"
:label=
"x.Name"
:value=
"x.Id"
></el-option>
</el-select>
</div>
<div
style=
"height: 320px; padding:0 12px;"
class=
"q-mt-md"
>
...
...
@@ -373,414 +590,552 @@
</div>
</div>
</div>
</div>
</div>
</template>
<
script
>
import
Customer
from
'./components/customer.vue'
import
Coreview
from
'./components/coreview.vue'
;
import
Pagecount
from
'./components/pagecount.vue'
;
import
Citiescount
from
'./components/citiescount.vue'
import
Tradecount
from
'./components/tradecount.vue'
export
default
{
components
:
{
Customer
,
Coreview
,
Pagecount
,
Citiescount
,
Tradecount
},
data
()
{
return
{
active
:
0
,
pickerOptions
:
{
shortcuts
:
[{
text
:
'最近一周'
,
import
Customer
from
"./components/customer.vue"
;
import
Coreview
from
"./components/coreview.vue"
;
import
Pagecount
from
"./components/pagecount.vue"
;
import
Citiescount
from
"./components/citiescount.vue"
;
import
Tradecount
from
"./components/tradecount.vue"
;
export
default
{
components
:
{
Customer
,
Coreview
,
Pagecount
,
Citiescount
,
Tradecount
},
data
()
{
return
{
active
:
0
,
pickerOptions
:
{
shortcuts
:
[
{
text
:
"最近一周"
,
onClick
(
picker
)
{
const
end
=
new
Date
();
const
start
=
new
Date
();
start
.
setTime
(
start
.
getTime
()
-
3600
*
1000
*
24
*
7
);
picker
.
$emit
(
'pick'
,
[
start
,
end
]);
start
.
setTime
(
start
.
getTime
()
-
3600
*
1000
*
24
*
8
);
end
.
setTime
(
end
.
getTime
()
-
3600
*
1000
*
24
*
1
);
picker
.
$emit
(
"pick"
,
[
start
,
end
]);
}
},
{
text
:
'最近一个月'
,
},
{
text
:
"最近一个月"
,
onClick
(
picker
)
{
const
end
=
new
Date
();
const
start
=
new
Date
();
start
.
setTime
(
start
.
getTime
()
-
3600
*
1000
*
24
*
30
);
picker
.
$emit
(
'pick'
,
[
start
,
end
]);
start
.
setTime
(
start
.
getTime
()
-
3600
*
1000
*
24
*
31
);
end
.
setTime
(
end
.
getTime
()
-
3600
*
1000
*
24
*
1
);
picker
.
$emit
(
"pick"
,
[
start
,
end
]);
}
},
{
text
:
'最近三个月'
,
},
{
text
:
"最近三个月"
,
onClick
(
picker
)
{
const
end
=
new
Date
();
const
start
=
new
Date
();
start
.
setTime
(
start
.
getTime
()
-
3600
*
1000
*
24
*
90
);
picker
.
$emit
(
'pick'
,
[
start
,
end
]);
start
.
setTime
(
start
.
getTime
()
-
3600
*
1000
*
24
*
91
);
end
.
setTime
(
end
.
getTime
()
-
3600
*
1000
*
24
*
1
);
picker
.
$emit
(
"pick"
,
[
start
,
end
]);
}
}],
disabledDate
(
time
)
{
return
time
.
getTime
()
>
new
Date
(
Date
.
now
()
-
3600
*
1000
*
24
);
},
},
menus
:
[{
title
:
'客户数据'
,
path
:
'coreData'
},
{
title
:
'交易数据'
,
path
:
'realTimeData'
},
{
title
:
'访问分析'
,
path
:
'accessAnalysis'
},
{
title
:
'产品统计'
,
path
:
'productStatistics'
}
],
branchs
:
[],
parameters
:
{
branchId
:
-
1
,
dateRange
:
[],
StartDate
:
""
,
EndDate
:
""
,
disabledDate
(
time
)
{
return
time
.
getTime
()
>
new
Date
(
Date
.
now
()
-
3600
*
1000
*
24
);
}
},
menus
:
[
{
title
:
"客户数据"
,
path
:
"coreData"
},
coreId
:
1
,
coreLists
:
[{
"Id"
:
1
,
"Name"
:
"累计用户数"
},
{
"Id"
:
2
,
"Name"
:
"日访问人数"
},
{
"Id"
:
3
,
"Name"
:
"日打开次数"
},
{
"Id"
:
4
,
"Name"
:
"日访问页面数"
},
{
"Id"
:
5
,
"Name"
:
"日新增用户"
},
{
"Id"
:
6
,
"Name"
:
"日打开次数(新用户)"
},
{
"Id"
:
7
,
"Name"
:
"总添加人数"
},
{
"Id"
:
8
,
"Name"
:
"新添加人数"
},
{
"Id"
:
9
,
"Name"
:
"活跃日留存"
},
{
"Id"
:
10
,
"Name"
:
"新增日留存"
},
{
"Id"
:
11
,
"Name"
:
"流失用户数"
},
{
"Id"
:
12
,
"Name"
:
"回流用户数"
}],
metrics
:
[{
id
:
1
,
name
:
"访问次数"
},
{
id
:
2
,
name
:
"访问人数"
},
{
id
:
3
,
name
:
"次均停留时长"
},
{
id
:
4
,
name
:
"进入页次数"
},
{
id
:
5
,
name
:
"退出页次数"
},
{
id
:
6
,
name
:
"转发次数"
},
{
id
:
7
,
name
:
"转发人数"
}
],
metricsId
:
1
,
areas
:
[{
{
title
:
"交易数据"
,
path
:
"realTimeData"
},
{
title
:
"访问分析"
,
path
:
"accessAnalysis"
},
{
title
:
"产品统计"
,
path
:
"productStatistics"
}
],
branchs
:
[],
parameters
:
{
branchId
:
-
1
,
dateRange
:
[],
StartDate
:
""
,
EndDate
:
""
},
coreId
:
1
,
coreLists
:
[
{
Id
:
1
,
Name
:
'省份'
},
{
value
:
"Visit_Total"
,
Name
:
"累计用户数"
,
Unit
:
'人'
},
{
Id
:
2
,
Name
:
'城市'
}],
platforms
:
[{
value
:
"Visit_UV"
,
Name
:
"日访问人数"
,
Unit
:
'人'
},
{
Id
:
3
,
value
:
"Session_CNT"
,
Name
:
"日打开次数"
,
Unit
:
'次'
},
{
Id
:
4
,
value
:
"Share_UV"
,
Name
:
"转发人数"
,
Unit
:
'人'
},
{
Id
:
5
,
value
:
"Visit_UV_New"
,
Name
:
"日新增用户"
,
Unit
:
'人'
},
{
Id
:
9
,
value
:
"VisitUV"
,
Name
:
"活跃日留存"
,
Unit
:
'人'
},
{
Id
:
10
,
value
:
"NewVisitUV"
,
Name
:
"新增日留存"
,
Unit
:
'人'
},
{
Id
:
11
,
value
:
"Stay_Time_UV"
,
Name
:
"人均停留时长"
,
Unit
:
'秒'
},
{
Id
:
12
,
value
:
"Share_UV"
,
Name
:
"转发次数"
,
Unit
:
'次'
},
{
Id
:
13
,
value
:
"Visit_Depth"
,
Name
:
"平均访问深度"
,
Unit
:
'层'
},
{
Id
:
14
,
value
:
"Stay_Time_Session"
,
Name
:
"次均停留时长"
,
Unit
:
'秒'
},
],
metrics
:
[
{
id
:
1
,
name
:
"访问次数"
},
{
id
:
2
,
name
:
"访问人数"
},
{
id
:
3
,
name
:
"次均停留时长"
},
{
id
:
4
,
name
:
"进入页次数"
},
{
id
:
5
,
name
:
"退出页次数"
},
{
id
:
6
,
name
:
"转发次数"
},
{
id
:
7
,
name
:
"转发人数"
}
],
metricsId
:
1
,
areas
:
[
{
Id
:
1
,
Name
:
'全部'
},
{
Name
:
"省份"
},
{
Id
:
2
,
Name
:
'旅小友'
}],
platformId
:
1
,
areaId
:
1
,
customerObj
:
{},
}
},
created
()
{
this
.
getCompanyList
();
const
end
=
new
Date
();
const
start
=
new
Date
();
start
.
setTime
(
start
.
getTime
()
-
3600
*
1000
*
24
*
7
);
end
.
setTime
(
end
.
getTime
()
-
3600
*
1000
*
24
);
this
.
parameters
.
dateRange
=
[
start
.
toLocaleString
().
split
(
' '
)[
0
],
end
.
toLocaleString
().
split
(
' '
)[
0
]]
Name
:
"城市"
}
],
platforms
:
[
{
Id
:
1
,
Name
:
"全部"
},
{
Id
:
2
,
Name
:
"旅小友"
}
],
platformId
:
1
,
areaId
:
1
,
customerObj
:
{},
baseWechatData
:
{},
trendData
:{},
currentCoreObj
:
null
,
pageData
:{}
};
},
created
()
{
this
.
getCompanyList
();
const
end
=
new
Date
();
const
start
=
new
Date
();
start
.
setTime
(
start
.
getTime
()
-
3600
*
1000
*
24
*
7
);
end
.
setTime
(
end
.
getTime
()
-
3600
*
1000
*
24
);
this
.
parameters
.
dateRange
=
[
start
.
toLocaleString
().
split
(
" "
)[
0
],
end
.
toLocaleString
().
split
(
" "
)[
0
]
];
this
.
getHomeChat
();
this
.
getCustomerStatic
();
this
.
getPageData
()
},
mounted
()
{},
methods
:
{
handleDateChange
()
{
this
.
getCustomerStatic
();
this
.
getHomeChat
();
this
.
getPageData
()
},
mounted
()
{
handleCompanyChange
()
{
this
.
getCustomerStatic
();
},
methods
:
{
getCustomerStatic
()
{
if
(
this
.
parameters
.
dateRange
&&
this
.
parameters
.
dateRange
.
length
==
2
)
{
var
tempArray
=
this
.
parameters
.
dateRange
;
this
.
parameters
.
StartDate
=
tempArray
[
0
];
this
.
parameters
.
EndDate
=
tempArray
[
1
]
getCustomerStatic
()
{
if
(
this
.
parameters
.
dateRange
&&
this
.
parameters
.
dateRange
.
length
==
2
)
{
var
tempArray
=
this
.
parameters
.
dateRange
;
this
.
parameters
.
StartDate
=
tempArray
[
0
];
this
.
parameters
.
EndDate
=
tempArray
[
1
];
}
var
that
=
this
;
that
.
apipost
(
"erp_post_GetCustomerStatic"
,
that
.
parameters
,
res
=>
{
console
.
log
(
"res"
,
res
);
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
customerObj
=
res
.
data
.
data
;
}
else
{
that
.
Error
(
res
.
data
.
message
);
}
var
that
=
this
;
that
.
apipost
(
"erp_post_GetCustomerStatic"
,
that
.
parameters
,
(
res
)
=>
{
});
},
handleClick
(
index
)
{
this
.
active
=
index
;
},
getCompanyList
()
{
const
userInfo
=
this
.
getLocalStorage
();
const
RB_Group_id
=
userInfo
.
RB_Group_id
;
const
msg
=
{
Status
:
0
,
is_show
:
0
,
RB_Group_Id
:
RB_Group_id
};
this
.
apipost
(
"admin_get_BranchGetList"
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
branchs
=
[
{
Id
:
-
1
,
BName
:
"全部"
}
];
this
.
branchs
=
this
.
branchs
.
concat
(
res
.
data
.
data
);
}
},
err
=>
{}
);
},
getHomeChat
()
{
const
msg
=
{
StartDate
:
this
.
parameters
.
dateRange
[
0
],
EndDate
:
this
.
parameters
.
dateRange
[
1
]
};
this
.
apipost
(
"wechatstatistics_post_HomeWechatStatisticsList"
,
msg
,
res
=>
{
console
.
log
(
"res"
,
res
);
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
customerObj
=
res
.
data
.
data
;
}
else
{
that
.
Error
(
res
.
data
.
message
);
this
.
baseWechatData
=
res
.
data
.
data
;
this
.
getTrendWechatData
()
}
});
},
handleClick
(
index
)
{
this
.
active
=
index
;
},
getCompanyList
()
{
const
userInfo
=
this
.
getLocalStorage
();
const
RB_Group_id
=
userInfo
.
RB_Group_id
;
},
err
=>
{}
);
},
getTrendWechatData
(){
//wechatstatistics_post_WechatStatisticsList
const
msg
=
{
Status
:
0
,
is_show
:
0
,
RB_Group_Id
:
RB_Group_id
StartDate
:
this
.
parameters
.
dateRange
[
0
],
EndDate
:
this
.
parameters
.
dateRange
[
1
]
};
this
.
apipost
(
"wechatstatistics_post_WechatStatisticsList"
,
msg
,
res
=>
{
console
.
log
(
"res"
,
res
);
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
trendData
=
res
.
data
.
data
;
this
.
formatCoreTrend
()
}
},
err
=>
{}
);
},
getPageData
(){
//wechatstatistics_post_WechatStatisticsList
const
msg
=
{
StartDate
:
this
.
parameters
.
dateRange
[
0
],
EndDate
:
this
.
parameters
.
dateRange
[
1
]
};
this
.
apipost
(
"wechatstatistics_post_PageVisitStatisticsList"
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
trendData
=
res
.
data
.
data
;
this
.
formatCoreTrend
()
}
},
err
=>
{}
);
},
formatCoreTrend
(){
const
filed
=
this
.
coreLists
.
find
(
x
=>
x
.
Id
==
this
.
coreId
)
const
avg
=
this
.
trendData
[
filed
.
value
]
const
unit
=
filed
.
Unit
console
.
log
(
this
.
trendData
.
List
)
const
xAxisData
=
this
.
trendData
.
List
.
map
(
x
=>
x
.
CreateDayStr
)
const
seriesData
=
this
.
trendData
.
List
.
map
(
x
=>
x
[
filed
.
value
])
this
.
currentCoreObj
=
{
avg
:
avg
,
unit
:
unit
,
xAxisData
:
xAxisData
,
lineData
:{
name
:
filed
.
Name
,
data
:
seriesData
}
}
this
.
apipost
(
'admin_get_BranchGetList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
branchs
=
[{
Id
:
-
1
,
BName
:
'全部'
}]
this
.
branchs
=
this
.
branchs
.
concat
(
res
.
data
.
data
)
}
},
err
=>
{})
},
console
.
log
(
this
.
currentCoreObj
)
}
}
};
</
script
>
<
style
>
.full-box
{
width
:
100%
;
height
:
100%
;
background
:
#f7f7f7
;
padding
:
20px
;
box-sizing
:
border-box
;
}
.full-box
{
width
:
100%
;
height
:
100%
;
background
:
#f7f7f7
;
padding
:
20px
;
box-sizing
:
border-box
;
}
.full-box
.dot
{
color
:
#00ce8b
;
amination
:
realtime
2s
infinite
;
-webkit-animation
:
realtime
2s
infinite
;
font-size
:
27px
;
vertical-align
:
3px
;
width
:
4px
;
height
:
4px
;
background-color
:
#00ce8b
;
display
:
inline-block
;
border-radius
:
50%
;
margin-right
:
3px
;
}
.full-box
.dot
{
color
:
#00ce8b
;
amination
:
realtime
2s
infinite
;
-webkit-animation
:
realtime
2s
infinite
;
font-size
:
27px
;
vertical-align
:
3px
;
width
:
4px
;
height
:
4px
;
background-color
:
#00ce8b
;
display
:
inline-block
;
border-radius
:
50%
;
margin-right
:
3px
;
}
.full-box
.text-info
{
display
:
inline-block
;
vertical-align
:
baseline
;
font-size
:
14px
;
font-weight
:
400
;
color
:
rgba
(
0
,
0
,
0
,
.3
);
font-family
:
Avenir
,
'PingFang SC Regular'
;
}
.full-box
.text-info
{
display
:
inline-block
;
vertical-align
:
baseline
;
font-size
:
14px
;
font-weight
:
400
;
color
:
rgba
(
0
,
0
,
0
,
0
.3
);
font-family
:
Avenir
,
"PingFang SC Regular"
;
}
.full-box
.red
{
color
:
#fa5151
;
}
.full-box
.red
{
color
:
#fa5151
;
}
.full-box
.green
{
color
:
#00ce8b
!important
;
}
.full-box
.green
{
color
:
#00ce8b
!important
;
}
.full-box
.el-divider
{
height
:
60px
!important
;
margin
:
0
12px
;
background
:
#f7f7f7
;
}
.full-box
.el-divider
{
height
:
60px
!important
;
margin
:
0
12px
;
background
:
#f7f7f7
;
}
.full-box
.num
{
font-family
:
Avenir
;
}
.full-box
.q-mt-md
{
margin-top
:
20px
;
}
.full-box
.num
{
font-family
:
Avenir
;
}
.full-box
.q-mb
-md
{
margin-bottom
:
20px
;
}
.full-box
.q-mt
-md
{
margin-top
:
20px
;
}
.full-box
.q-ml
-md
{
margin-left
:
20px
;
}
.full-box
.q-mb
-md
{
margin-bottom
:
20px
;
}
.full-box
.q-mr
-md
{
margin-righ
t
:
20px
;
}
.full-box
.q-ml
-md
{
margin-lef
t
:
20px
;
}
.full-box
.q-mx-md
{
margin-right
:
20px
;
margin-left
:
20px
;
}
.full-box
.q-mr-md
{
margin-right
:
20px
;
}
.full-box
.q-my
-md
{
margin-top
:
20px
;
margin-bottom
:
20px
;
}
.full-box
.q-mx
-md
{
margin-right
:
20px
;
margin-left
:
20px
;
}
.full-box
.page-title
{
color
:
rgba
(
0
,
0
,
0
,
.9
);
font-size
:
24px
;
font-weight
:
500
;
}
.full-box
.q-my-md
{
margin-top
:
20px
;
margin-bottom
:
20px
;
}
.full-box
.data-box
{
max-width
:
1366px
;
margin
:
0
auto
;
}
.full-box
.page-title
{
color
:
rgba
(
0
,
0
,
0
,
0.9
);
font-size
:
24px
;
font-weight
:
500
;
}
.full-box
.card
{
background
:
#fff
;
padding
:
16px
20px
;
}
.full-box
.data-box
{
max-width
:
1366px
;
margin
:
0
auto
;
}
.full-box
.card.big
{
padding
:
32px
20px
;
}
.full-box
.card
{
background
:
#fff
;
padding
:
16px
20px
;
}
.full-box
.menu-item
{
margin-right
:
30px
;
font-size
:
17px
;
color
:
rgba
(
0
,
0
,
0
,
.55
);
font-weight
:
400
;
cursor
:
pointer
;
}
.full-box
.card.big
{
padding
:
32px
20px
;
}
.full-box
.menu-item.active
,
.full-box
.sub-title
{
font-family
:
PingfangSC-Medium
,
Helvetica
;
font-weight
:
500
;
color
:
rgba
(
0
,
0
,
0
,
.9
)
;
font-size
:
17px
;
}
.full-box
.menu-item
{
margin-right
:
30px
;
font-size
:
17px
;
color
:
rgba
(
0
,
0
,
0
,
0.55
)
;
font-weight
:
400
;
cursor
:
pointer
;
}
.full-box
.data-items
{
background-color
:
#fff
;
padding
:
12px
;
border-radius
:
12px
;
font-size
:
14px
;
/* font-weight: 400; */
color
:
rgba
(
0
,
0
,
0
,
.9
);
font-family
:
PingFang
SC
Regular
;
}
.full-box
.menu-item.active
,
.full-box
.sub-title
{
font-family
:
PingfangSC-Medium
,
Helvetica
;
font-weight
:
500
;
color
:
rgba
(
0
,
0
,
0
,
0.9
);
font-size
:
17px
;
}
.full-box
.text-small
{
font-size
:
12px
;
/* font-weight: 400; */
color
:
rgba
(
0
,
0
,
0
,
.9
);
font-family
:
PingFang
SC
Regular
;
}
.full-box
.data-items
{
background-color
:
#fff
;
padding
:
12px
;
border-radius
:
12px
;
font-size
:
14px
;
/* font-weight: 400; */
color
:
rgba
(
0
,
0
,
0
,
0.9
);
font-family
:
PingFang
SC
Regular
;
}
.full-box
.data-items
:hover
{
background-color
:
#f7f7f7
;
}
.full-box
.text-small
{
font-size
:
12px
;
/* font-weight: 400; */
color
:
rgba
(
0
,
0
,
0
,
0.9
);
font-family
:
PingFang
SC
Regular
;
}
.full-box
.data-items
.datanum
{
font-size
:
24px
;
font-weight
:
500
;
}
.full-box
.data-items
:hover
{
background-color
:
#f7f7f7
;
}
.full-box
.rounded
{
border-radius
:
12px
;
}
.full-box
.data-items
.datanum
{
font-size
:
24px
;
font-weight
:
500
;
}
.full-box
.row
{
display
:
fle
x
;
}
.full-box
.rounded
{
border-radius
:
12p
x
;
}
.full-box
.items-center
{
align-items
:
center
;
}
.full-box
.row
{
display
:
flex
;
}
.full-box
.col
{
flex
:
1
;
}
.full-box
.items-center
{
align-items
:
center
;
}
.full-box
.justify-between
{
justify-content
:
space-between
;
}
.full-box
.col
{
flex
:
1
;
}
.full-box
.juesify-center
{
justify-content
:
center
;
}
.full-box
.justify-between
{
justify-content
:
space-between
;
}
.full-box
.el-input__inner
{
color
:
rgba
(
0
,
0
,
0
,
.9
)
!important
;
border-radius
:
12px
!important
;
border
:
none
!important
;
}
.full-box
.juesify-center
{
justify-content
:
center
;
}
.full-box
.el-date-editor
.el-range-separator
{
width
:
18px
!important
;
}
.full-box
.el-input__inner
{
color
:
rgba
(
0
,
0
,
0
,
0.9
)
!important
;
border-radius
:
12px
!important
;
border
:
none
!important
;
}
.full-box
.el-input__icon
{
color
:
rgba
(
0
,
0
,
0
,
.9
)
!important
;
font-weight
:
bolder
;
}
.full-box
.el-date-editor
.el-range-separator
{
width
:
18px
!important
;
}
@keyframes
realtime
{
0
%
{
opacity
:
1
;
/* 初始状态,元素完全不透明 */
}
.full-box
.el-input__icon
{
color
:
rgba
(
0
,
0
,
0
,
0.9
)
!important
;
font-weight
:
bolder
;
}
50
%
{
opacity
:
0.2
;
/* 动画进行到一半时,元素接近透明 */
}
@keyframes
realtime
{
0
%
{
opacity
:
1
;
/* 初始状态,元素完全不透明 */
}
100
%
{
opacity
:
1
;
/* 动画结束时,元素恢复完全不透明 */
}
50
%
{
opacity
:
0.2
;
/* 动画进行到一半时,元素接近透明 */
}
100
%
{
opacity
:
1
;
/* 动画结束时,元素恢复完全不透明 */
}
}
</
style
>
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