Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
attendance-performance-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
赵啸非
attendance-performance-platform
Commits
002a4d27
Commit
002a4d27
authored
Mar 19, 2024
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
推修改汇总表
parent
8a651b8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
103 additions
and
39 deletions
+103
-39
attendance-performance-manager-ui/admin/src/views/staff/perform/summary/list.vue
...manager-ui/admin/src/views/staff/perform/summary/list.vue
+103
-39
No files found.
attendance-performance-manager-ui/admin/src/views/staff/perform/summary/list.vue
View file @
002a4d27
...
...
@@ -169,22 +169,35 @@ export default {
width
:
150
,
formatter
:
(
row
)
=>
{
return
(
this
.
tableData
.
dict
.
weightPdu
.
attendWeight
-
row
.
attendScore
).
toFixed
(
2
)
>
0
?
(
row
.
attendScore
-
this
.
tableData
.
dict
.
weightPdu
.
attendWeight
).
toFixed
(
2
)
<
0
?
(
<
span
style
=
"
color:red
"
>
{
row
.
attendScore
+
"
(
-
"
+
"
(
"
+
(
this
.
tableData
.
dict
.
weightPdu
.
attendWeight
-
row
.
attendScore
row
.
attendScore
-
this
.
tableData
.
dict
.
weightPdu
.
attendWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
attendScore
-
this
.
tableData
.
dict
.
weightPdu
.
attendWeight
).
toFixed
(
2
)
>
0
?
(
<
span
>
{
row
.
attendScore
+
"
(
"
+
"
+
"
+
(
row
.
attendScore
-
this
.
tableData
.
dict
.
weightPdu
.
attendWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
attendScore
+
`(
${(
this
.
tableData
.
dict
.
weightPdu
.
attendWeight
-
row
.
attendScore
).
toFixed
(
2
)}
)`
`(
${(
row
.
attendScore
-
this
.
tableData
.
dict
.
weightPdu
.
attendWeight
).
toFixed
(
2
)}
)`
);
},
},
...
...
@@ -195,22 +208,35 @@ export default {
width
:
150
,
formatter
:
(
row
)
=>
{
return
(
this
.
tableData
.
dict
.
weightPdu
.
reviewWeight
-
row
.
reviewScore
).
toFixed
(
2
)
>
0
?
(
row
.
reviewScore
-
this
.
tableData
.
dict
.
weightPdu
.
reviewWeight
).
toFixed
(
2
)
<
0
?
(
<
span
style
=
"
color:red
"
>
{
row
.
reviewScore
+
"
(
-
"
+
"
(
"
+
(
this
.
tableData
.
dict
.
weightPdu
.
reviewWeight
-
row
.
reviewScore
row
.
reviewScore
-
this
.
tableData
.
dict
.
weightPdu
.
reviewWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
reviewScore
-
this
.
tableData
.
dict
.
weightPdu
.
reviewWeight
).
toFixed
(
2
)
>
0
?
(
<
span
>
{
row
.
reviewScore
+
"
(
"
+
"
+
"
+
(
row
.
reviewScore
-
this
.
tableData
.
dict
.
weightPdu
.
reviewWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
reviewScore
+
`(
${(
this
.
tableData
.
dict
.
weightPdu
.
reviewWeight
-
row
.
reviewScore
).
toFixed
(
2
)}
)`
`(
${(
row
.
reviewScore
-
this
.
tableData
.
dict
.
weightPdu
.
reviewWeight
).
toFixed
(
2
)}
)`
);
},
},
...
...
@@ -231,22 +257,35 @@ export default {
width
:
150
,
formatter
:
(
row
)
=>
{
return
(
this
.
tableData
.
dict
.
weightPdu
.
goworkWeight
-
row
.
goworkScore
).
toFixed
(
2
)
>
0
?
(
row
.
goworkScore
-
this
.
tableData
.
dict
.
weightPdu
.
goworkWeight
).
toFixed
(
2
)
<
0
?
(
<
span
style
=
"
color:red
"
>
{
row
.
goworkScore
+
"
(-
"
+
"
(
"
+
(
row
.
goworkScore
-
this
.
tableData
.
dict
.
weightPdu
.
goworkWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
goworkScore
-
this
.
tableData
.
dict
.
weightPdu
.
goworkWeight
).
toFixed
(
2
)
>
0
?
(
<
span
>
{
row
.
goworkScore
+
"
(
"
+
"
+
"
+
(
this
.
tableData
.
dict
.
weightPdu
.
goworkWeight
-
row
.
goworkScore
row
.
goworkScore
-
this
.
tableData
.
dict
.
weightPdu
.
goworkWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
goworkScore
+
`(
${(
this
.
tableData
.
dict
.
weightPdu
.
goworkWeight
-
row
.
goworkScore
).
toFixed
(
2
)}
)`
`(
${(
row
.
goworkScore
-
this
.
tableData
.
dict
.
weightPdu
.
goworkWeight
).
toFixed
(
2
)}
)`
);
},
},
...
...
@@ -257,22 +296,35 @@ export default {
width
:
150
,
formatter
:
(
row
)
=>
{
return
(
this
.
tableData
.
dict
.
weightPdu
.
effectWeight
-
row
.
effectScore
).
toFixed
(
2
)
>
0
?
(
row
.
effectScore
-
this
.
tableData
.
dict
.
weightPdu
.
effectWeight
).
toFixed
(
2
)
<
0
?
(
<
span
style
=
"
color:red
"
>
{
row
.
effectScore
+
"
(
-
"
+
"
(
"
+
(
this
.
tableData
.
dict
.
weightPdu
.
effectWeight
-
row
.
effectScore
row
.
effectScore
-
this
.
tableData
.
dict
.
weightPdu
.
effectWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
effectScore
-
this
.
tableData
.
dict
.
weightPdu
.
effectWeight
).
toFixed
(
2
)
>
0
?
(
<
span
>
{
row
.
effectScore
+
"
(
"
+
"
+
"
+
(
row
.
effectScore
-
this
.
tableData
.
dict
.
weightPdu
.
effectWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
effectScore
+
`(
${(
this
.
tableData
.
dict
.
weightPdu
.
effectWeight
-
row
.
effectScore
).
toFixed
(
2
)}
)`
`(
${(
row
.
effectScore
-
this
.
tableData
.
dict
.
weightPdu
.
effectWeight
).
toFixed
(
2
)}
)`
);
},
},
...
...
@@ -283,21 +335,33 @@ export default {
width
:
150
,
formatter
:
(
row
)
=>
{
return
(
this
.
tableData
.
dict
.
weightPdu
.
selfWeight
-
row
.
otherScore
).
toFixed
(
2
)
>
0
?
(
row
.
otherScore
-
this
.
tableData
.
dict
.
weightPdu
.
selfWeight
).
toFixed
(
2
)
<
0
?
(
<
span
style
=
"
color:red
"
>
{
row
.
otherScore
+
"
(-
"
+
"
(
"
+
(
row
.
otherScore
-
this
.
tableData
.
dict
.
weightPdu
.
selfWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
otherScore
-
this
.
tableData
.
dict
.
weightPdu
.
selfWeight
).
toFixed
(
2
)
>
0
?
(
<
span
>
{
row
.
otherScore
+
"
(
"
+
"
+
"
+
(
this
.
tableData
.
dict
.
weightPdu
.
selfWeight
-
row
.
otherScore
row
.
otherScore
-
this
.
tableData
.
dict
.
weightPdu
.
selfWeight
).
toFixed
(
2
)
+
"
)
"
}
<
/span
>
)
:
(
row
.
otherScore
+
`(
${(
this
.
tableData
.
dict
.
weightPdu
.
selfWeight
-
row
.
otherScore
).
toFixed
(
2
)}
)`
`(
${(
row
.
otherScore
-
this
.
tableData
.
dict
.
weightPdu
.
selfWeight
).
toFixed
(
2
)}
)`
);
},
},
...
...
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