From 0ad52a97b19522ae06d8dc872737e7a2b08a9ebf Mon Sep 17 00:00:00 2001 From: "Lyj@210615" <18050528999@163.com> Date: Thu, 1 Dec 2022 13:39:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E8=88=AA=E6=B6=88=E6=81=AF=E5=BC=B9?= =?UTF-8?q?=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/style/_base.scss | 11 +++++ src/layouts/components/NavBar/index.vue | 66 +++++++++++++++++++++++-- 2 files changed, 72 insertions(+), 5 deletions(-) diff --git a/src/assets/style/_base.scss b/src/assets/style/_base.scss index cfbef46..44f3e97 100644 --- a/src/assets/style/_base.scss +++ b/src/assets/style/_base.scss @@ -620,3 +620,14 @@ $font-map: ( font-size: $value; } } + .message-pop { + padding: 40px 28px; + box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.3); + border-radius: 8px; + .popper__arrow::after { + display: none; + } + .popper__arrow { + display: none; + } + } \ No newline at end of file diff --git a/src/layouts/components/NavBar/index.vue b/src/layouts/components/NavBar/index.vue index 1c2c935..bd063ef 100644 --- a/src/layouts/components/NavBar/index.vue +++ b/src/layouts/components/NavBar/index.vue @@ -26,12 +26,23 @@ - -
- - 消息 + +
+
+ + {{item.date}} +
+
{{item.message}}
- + +
@@ -87,6 +98,16 @@ export default { { fontSize: "16px", label: "A+" }, ], fontIndex: localStorage.getItem("fontIndex") || 1, + messageList:[ + { + date:"2022-12-12", + message:"驳回修改病例【6条】" + }, + { + date:"2022-12-12", + message:"驳回修改病例【6条】" + }, + ] } }, computed: { @@ -230,4 +251,39 @@ export default { } } } +.message-box { + .top-box { + display: flex; + flex-direction: row; + .blue-dot { + width: 4px; + height: 4px; + background: #4b65ff; + display: block; + border-radius: 100%; + } + .top-text { + font-size: 14px; + font-family: AlibabaPuHuiTiR; + color: #999999; + } + } +} +// .el-popper { +// ::v-deep .popper__arrow { +// display: none; +// } +// } + \ No newline at end of file -- 2.22.0