Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sample-form-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
sample-form-platform
Commits
135b113c
Commit
135b113c
authored
Oct 10, 2024
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf: 优化能量显示
parent
72cd7d68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
sample-form-client-ui/admin/src/pages/home/Home.vue
sample-form-client-ui/admin/src/pages/home/Home.vue
+7
-8
No files found.
sample-form-client-ui/admin/src/pages/home/Home.vue
View file @
135b113c
...
...
@@ -281,16 +281,15 @@ export default {
},
filters
:
{
filterCount
(
val
)
{
if
(
val
>=
1000
&&
val
<
10000
)
{
if
(
val
<
1000
)
{
return
val
+
"
g
"
;
}
let
unit
=
"
kg
"
;
if
(
val
>=
1000
&&
val
<=
999000
)
{
let
num
=
val
/
1000
;
return
num
.
toFixed
(
2
)
+
"
kg
"
;
}
else
if
(
val
>=
10000
&&
val
<
999000
)
{
let
num
=
val
/
10000
;
return
num
.
toFixed
(
1
)
+
"
万kg
"
;
}
else
if
(
val
>=
999000
)
{
return
`999+万kg`
;
return
num
.
toFixed
(
1
)
+
unit
;
}
else
{
return
val
+
"
g
"
;
return
`999+
${
unit
}
`
;
}
},
},
...
...
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