Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mes
mes-ui
Commits
1f5e0dc3
Commit
1f5e0dc3
authored
Apr 08, 2025
by
tanjunxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 排版日历细节优化
parent
d062d331
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
team.vue
src/views/mes/cal/calendar/team.vue
+10
-2
No files found.
src/views/mes/cal/calendar/team.vue
View file @
1f5e0dc3
...
...
@@ -75,7 +75,7 @@
:ref=
"`popoverRef-$
{calendarDay.theDay}`"
placement="bottom"
trigger="click"
@show="handleShow(teamShift, `popoverRef-${calendarDay.theDay}`)"
@show="handleShow(teamShift,
index,
`popoverRef-${calendarDay.theDay}`)"
>
<span
v-for=
"(item, index) in content"
...
...
@@ -300,7 +300,7 @@ export default {
return
festAndTerm
==
""
?
lunarMD
:
festAndTerm
;
},
handleShow
(
row
,
ref
)
{
handleShow
(
row
,
index
,
ref
)
{
Object
.
keys
(
this
.
$refs
).
forEach
((
key
)
=>
{
if
(
key
.
includes
(
"popoverRef-"
))
{
if
(
key
!=
ref
)
{
...
...
@@ -311,6 +311,14 @@ export default {
});
}
})
}
else
{
this
.
$refs
[
key
].
forEach
((
ele
,
idx
)
=>
{
if
(
index
!=
idx
)
{
this
.
$nextTick
(()
=>
{
ele
.
doClose
();
});
}
})
}
}
});
...
...
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