From 09e87819bc395d52a7788a6243897a46170f3131 Mon Sep 17 00:00:00 2001 From: jingbowen <970029315@qq.com> Date: Wed, 3 Aug 2022 13:03:52 +0800 Subject: [PATCH] 123 --- .../home/basic-info/basic-info.component.html | 54 ++++++++++++- .../home/basic-info/basic-info.component.scss | 80 +++++++++++++++++++ src/app/pages/login/login.component.html | 4 +- src/app/pages/login/login.component.scss | 9 ++- src/styles.scss | 4 +- src/theme.scss | 5 ++ 6 files changed, 150 insertions(+), 6 deletions(-) create mode 100644 src/theme.scss diff --git a/src/app/home/basic-info/basic-info.component.html b/src/app/home/basic-info/basic-info.component.html index 7ea6c4a..f78dc09 100644 --- a/src/app/home/basic-info/basic-info.component.html +++ b/src/app/home/basic-info/basic-info.component.html @@ -1 +1,53 @@ -

basic-info works!

+
+
+
+ 菜单列表 + +
+
+ + + +
+
+
+ 菜单名称 + 操作 +
+ +
\ No newline at end of file diff --git a/src/app/home/basic-info/basic-info.component.scss b/src/app/home/basic-info/basic-info.component.scss index e69de29..75867c9 100644 --- a/src/app/home/basic-info/basic-info.component.scss +++ b/src/app/home/basic-info/basic-info.component.scss @@ -0,0 +1,80 @@ +.orbox { + width: 100%; + height: 100%; + overflow-y: auto; + background: #fff; + box-sizing: border-box; + padding: 20px; + font-size: 15px; + } + + .topbox { + width: 700px; + height: 36px; + display: flex; + align-items: center; + justify-content: space-between; + + .lefttop { + span:nth-child(1) { + color: #000D21; + margin-right: 16px; + } + + span:nth-child(2) { + color: rgba(36, 36, 36, 0.24); + } + } + + .righttop { + height: 36px; + display: flex; + + button { + margin-left: 16px; + } + + nz-input-group { + height: 32px; + } + } + } + + .treeTitle { + width: 700px; + height: 36px; + line-height: 36px; + display: flex; + justify-content: space-between; + color: #000D21; + box-sizing: border-box; + padding-left: 30px; + padding-right: 180px; + background: rgba(145, 204, 255, 0.2); + margin: 12px 0; + } + + .nodebox { + font-size: 15px; + + } + + .operation { + position: absolute; + right: 0; + + span { + margin-left: 40px; + } + + span:nth-child(1), + span:nth-child(2), + span:nth-child(3) { + color: #2399FF; + } + + .grey{ + color: rgba(0, 13, 33, 0.48)!important; + } + } + \ No newline at end of file diff --git a/src/app/pages/login/login.component.html b/src/app/pages/login/login.component.html index 11f8a27..e069e9c 100644 --- a/src/app/pages/login/login.component.html +++ b/src/app/pages/login/login.component.html @@ -4,7 +4,7 @@

防消一体化综合治理平台

- +

登录

@@ -28,7 +28,7 @@
- + 忘记密码? diff --git a/src/app/pages/login/login.component.scss b/src/app/pages/login/login.component.scss index f7618f4..1a20adf 100644 --- a/src/app/pages/login/login.component.scss +++ b/src/app/pages/login/login.component.scss @@ -10,7 +10,9 @@ } .left{ color: #feffff; + padding: 50px; margin-right: 100px; + height: 504px; p{ font-size: 24px; text-align: left; @@ -25,11 +27,14 @@ width: 468px; height: 504px; box-sizing: border-box; - padding: 79px 45px 42px 45px; + padding: 40px 45px 42px 45px; color: #3b3b3b; } .cardheader { + width: 200px; + margin: 0 auto; + text-align: center; font-size: 22px; color: #3b3b3b } @@ -61,7 +66,7 @@ button { width: 100%; height: 42px; font-size: 16px; - background: #2D4CC1; + // background: #2D4CC1; border-radius: 4px; } diff --git a/src/styles.scss b/src/styles.scss index 2f8e2e3..b7395d4 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -15,7 +15,6 @@ body { width: 100%; height: 100%; overflow: hidden; - --antd-wave-shadow-color: #2D4CC1; } body { @@ -139,3 +138,6 @@ app-root { .maxHeightTreeSelect { max-height: 280px; } +button{ + background: #2D4CC1; +} \ No newline at end of file diff --git a/src/theme.scss b/src/theme.scss new file mode 100644 index 0000000..87c3565 --- /dev/null +++ b/src/theme.scss @@ -0,0 +1,5 @@ +// -------- 引入官方提供的 less 样式入口文件 ----------- +@import "../node_modules/ng-zorro-antd/ng-zorro-antd.less"; + +// -------- 自定义参数覆盖 ----------- +@primary-color : #f5222d; \ No newline at end of file