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
01273f8b
Commit
01273f8b
authored
Jan 15, 2024
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
推添加提示日期空数据占位符
parent
fc5d0229
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
attendance-performance-manager-ui/admin/src/views/attendance/stat/list.vue
...mance-manager-ui/admin/src/views/attendance/stat/list.vue
+18
-4
No files found.
attendance-performance-manager-ui/admin/src/views/attendance/stat/list.vue
View file @
01273f8b
...
...
@@ -246,14 +246,18 @@ export default {
{
v
.
goWorkResult
==
1
?
(
<
span
style
=
"
marginRight:10px
"
>
打卡时间:
{(
v
.
goWorkDate
=
timestampToTime
(
v
.
goWorkDate
,
6
))}
{
v
.
goWorkDate
?
(
v
.
goWorkDate
=
timestampToTime
(
v
.
goWorkDate
,
6
))
:
(
v
.
goWorkDate
=
"
--
"
)}
{
"
"
}
打卡结果:
{
this
.
tableData
.
dict
.
goWorkResult
[
v
.
goWorkResult
]}
<
/span
>
)
:
(
<
span
style
=
"
color:red;marginRight:10px
"
>
打卡时间:
{(
v
.
goWorkDate
=
timestampToTime
(
v
.
goWorkDate
,
6
))}
{
v
.
goWorkDate
?
(
v
.
goWorkDate
=
timestampToTime
(
v
.
goWorkDate
,
6
))
:
(
v
.
goWorkDate
=
"
--
"
)}
{
"
"
}
打卡结果:
{
this
.
tableData
.
dict
.
goWorkResult
[
v
.
goWorkResult
]}
<
/span
>
...
...
@@ -261,14 +265,24 @@ export default {
{
v
.
offWorkResult
==
1
?
(
<
span
>
打卡时间:
{(
v
.
offWorkDate
=
timestampToTime
(
v
.
offWorkDate
,
6
))}
{
v
.
offWorkDate
?
(
v
.
offWorkDate
=
timestampToTime
(
v
.
offWorkDate
,
6
))
:
(
v
.
offWorkDate
=
"
--
"
)}
{
"
"
}
打卡结果:
{
this
.
tableData
.
dict
.
offWorkResult
[
v
.
offWorkResult
]}
<
/span
>
)
:
(
<
span
style
=
"
color:red
"
>
打卡时间:
{(
v
.
offWorkDate
=
timestampToTime
(
v
.
offWorkDate
,
6
))}
{
v
.
offWorkDate
?
(
v
.
offWorkDate
=
timestampToTime
(
v
.
offWorkDate
,
6
))
:
(
v
.
offWorkDate
=
"
--
"
)}
{
"
"
}
打卡结果:
{
this
.
tableData
.
dict
.
offWorkResult
[
v
.
offWorkResult
]}
<
/span
>
...
...
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