+
+
+

+
AI软件著作权管理系统
+
+
+
+
+
{
- console.log(1)
- }
+ id: 'userinfo',
+ name: '个人信息',
+ },
+ {
+ id: 'changePass',
+ name: '修改密码'
+ },
+ {
+ id: 'logout',
+ name: '退出系统'
}
]}
+ handle={
+ (_e, _index, item) => {
+
+ console.log(item.name)
+ }
+ }
/>
diff --git a/src/layout/head/head.css b/src/layout/head/head.css
index cf893c1..d1454db 100644
--- a/src/layout/head/head.css
+++ b/src/layout/head/head.css
@@ -1,12 +1,13 @@
.head {
width: 100%;
- height: 70px;
+ height: 60px;
position: fixed;
top: 0;
left: 0;
- background-color: #E1E1E1;
+ background-color: var(--color-dark);
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
z-index: 0;
+ color: var(--color-light)
}
.head .center {
@@ -18,11 +19,36 @@
}
.head .center .left {
- width: 200px;
+ min-width: 180px;
height: 100%;
- background-color: blue;
+ display: flex;
+ align-items: center;
+ font-size: 20px;
+ font-weight: 800;
+}
+
+.head .center .left .logo {
+ width: 38px;
+ height: 38px;
+}
+
+.head .center .left .sys-title {
+ margin-left: 5px;
}
.head .center .right {
height: 100%;
+ display: flex;
+ justify-content: right;
+}
+
+.head .center .head-item {
+ height: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 0 15px;
+ font-size: var(--font-size-head);
+ cursor: pointer;
+ position: relative;
}
\ No newline at end of file