Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-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
c13c0a62
authored
2022-11-18 17:19:09 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:通知
1 parent
3a556c59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
src/components/NoticeBar/index.vue
src/components/NoticeBar/index.vue
View file @
c13c0a6
...
...
@@ -7,8 +7,10 @@
<div
style=
"margin-right:5px"
></div>
<div
ref=
"back"
class=
"back"
>
<div
ref=
"text"
class=
"text"
@
mouseover=
"mouseOver"
@
mouseleave=
"mouseLeave"
>
<p
v-for=
"(item, index) in noticeList"
:key=
"index"
@
click=
"handleNotice(item)"
>
{{
item
.
noticeTitle
}}
<p
v-for=
"(item, index) in noticeList"
:key=
"index"
>
<span>
{{
item
.
noticeTitle
}}
</span>
<span
class=
"noticePublishTime"
>
{{
item
.
noticePublishTime
}}
</span>
<el-button
type=
"text"
@
click=
"handleNotice(item)"
style=
"color:#F56C6C;font-size: 14px;"
>
[点击查看]
</el-button>
</p>
</div>
</div>
...
...
@@ -113,7 +115,6 @@ export default {
align-items
:
center
;
width
:
100%
;
height
:
28px
;
line-height
:
28px
;
background
:
rgba
(
0
,
0
,
0
,
0.1
);
.icon
{
...
...
@@ -141,7 +142,11 @@ export default {
display
:
flex
;
p
{
margin-right
:
10px
;
margin-right
:
80px
;
display
:
flex
;
align-items
:
center
;
height
:
28px
;
line-height
:
28px
;
}
}
}
...
...
Please
register
or
sign in
to post a comment