Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
dee09f0b
Commit
dee09f0b
authored
Dec 31, 2025
by
wusiyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 概览数据优化
parent
39faf252
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
13 deletions
+20
-13
src/views/Dashboard.vue
+20
-13
No files found.
src/views/Dashboard.vue
View file @
dee09f0b
...
...
@@ -101,7 +101,7 @@
<el-tooltip
class=
"item"
effect=
"light"
content=
"昨日转为已发货状态的总订单数(昨日北京时间0-24点数据)
"
:content=
"`昨日转为已发货状态的总订单数(${yesterday}北京时间 0-24点数据)`
"
placement=
"bottom"
>
<div
class=
"card-icon"
></div>
...
...
@@ -121,7 +121,11 @@
style=
"display: flex; margin-left: 10px"
>
<div
class=
"text-green"
>
{{ statisticData?.compareYesterdayShipmentOrderNum }}
{{
statisticData?.compareYesterdayShipmentOrderNum.toFixed(
2,
)
}}
</div>
<div
class=
"up-icon-green"
></div>
</div>
...
...
@@ -130,7 +134,7 @@
{{
Math.abs(
statisticData?.compareYesterdayShipmentOrderNum || 0,
)
)
.toFixed(2)
}}
</div>
<div
class=
"down-icon-red"
></div>
...
...
@@ -154,7 +158,7 @@
<el-tooltip
class=
"item"
effect=
"light"
content=
"昨日已发货订单中从接单转为已发货状态在24小时内的比例(昨日北京时间0-24点数据)
"
:content=
"`昨日已发货订单中从接单转为已发货状态在24小时内的比例(${yesterday}北京时间 0-24点数据)`
"
placement=
"bottom"
>
<div
class=
"card-icon"
></div>
...
...
@@ -175,8 +179,9 @@
>
<div
class=
"text-green"
>
{{
(statisticData?.compareLastDayShipmentRateOf24Hour ??
'-') + '%'
(statisticData?.compareLastDayShipmentRateOf24Hour.toFixed(
2,
) ?? '-') + '%'
}}
</div>
<div
class=
"up-icon-green"
></div>
...
...
@@ -187,7 +192,7 @@
Math.abs(
statisticData?.compareLastDayShipmentRateOf24Hour ||
0,
) + '%'
)
.toFixed(2)
+ '%'
}}
</div>
<div
class=
"down-icon-red"
></div>
...
...
@@ -232,8 +237,9 @@
>
<div
class=
"text-green"
>
{{
(statisticData?.compareLastDayShipmentRateOf48Hour ??
'-') + '%'
(statisticData?.compareLastDayShipmentRateOf48Hour.toFixed(
2,
) ?? '-') + '%'
}}
</div>
<div
class=
"up-icon-green"
></div>
...
...
@@ -244,7 +250,7 @@
Math.abs(
statisticData?.compareLastDayShipmentRateOf48Hour ||
0,
) + '%'
)
.toFixed(2)
+ '%'
}}
</div>
<div
class=
"down-icon-red"
></div>
...
...
@@ -294,8 +300,9 @@
>
<div
class=
"text-red"
>
{{
(statisticData?.compareLastDayOverTimeShipmentRate ??
'-') + '%'
(statisticData?.compareLastDayOverTimeShipmentRate.toFixed(
2,
) ?? '-') + '%'
}}
</div>
<div
class=
"up-icon-red"
></div>
...
...
@@ -306,7 +313,7 @@
Math.abs(
statisticData?.compareLastDayOverTimeShipmentRate ||
0,
) + '%'
)
.toFixed(2)
+ '%'
}}
</div>
<div
class=
"down-icon-green"
></div>
...
...
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