Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
1505aa3e
authored
2024-07-25 11:03:42 +0800
by
tianhaohao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
111
1 parent
ea897892
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
src/views/jktj/worker/index.vue
src/views/jktj/worker/index.vue
View file @
1505aa3
...
...
@@ -80,8 +80,9 @@ export default {
bdcdj
.
getWorkerStatistics
().
then
((
res
)
=>
{
this
.
tableData
.
data
=
res
.
result
;
for
(
let
item
of
this
.
tableData
.
data
)
{
item
.
womanRatio
=
((
item
.
womanNum
/
item
.
total
)
*
100
).
toFixed
(
2
)
+
'%'
;
}
console
.
log
(
this
.
tableData
.
data
);
item
.
womanRatio
=
((
item
.
womanNum
/
item
.
total
)
*
100
).
toFixed
(
2
)
+
"%"
;
}
});
},
// 重置
...
...
Please
register
or
sign in
to post a comment