From 5cd763edc85f3b14bc98af906828521d65276f48 Mon Sep 17 00:00:00 2001
From: “dzb” <2632970487@qq.com>
Date: 星期四, 13 十月 2022 17:57:11 +0800
Subject: [PATCH] 修改系统框架、消息管理新增

---
 src/App.vue |  114 ++++++++++++++++++++++++++++++++++++++++++++------------
 1 files changed, 89 insertions(+), 25 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index e8a4be3..31ef5a4 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -40,7 +40,7 @@
           url: 'sccg/system/portal/logo/search',
         }).then(res => {
           result = res.data;
-          sessionStorage.setItem('pic',JSON.stringify(result));
+          sessionStorage.setItem('pic', JSON.stringify(result));
         })
       }
       return result;
@@ -48,50 +48,114 @@
   }
 };
 </script>
-<style>
-
-.el-select-dropdown__item{
+<style lang="scss">
+.el-select-dropdown__item {
   height: 100% !important;
 }
-.el-select-dropdown,.popper-class{
+
+.el-select-dropdown,
+.popper-class {
   background-color: #17324c !important;
 }
-.el-select-dropdown__item.hover, .el-select-dropdown__item:hover{
+
+.el-select-dropdown__item.hover,
+.el-select-dropdown__item:hover {
   background-color: #17324c !important;
 }
-.el-tree{
+
+.el-tree {
   background-color: #09152f !important;
 }
-.el-tree-node__content:hover, .el-upload-list__item:hover{
+
+.el-tree-node__content:hover,
+.el-upload-list__item:hover {
   background-color: #09152f !important;
   color: #4b9bb7 !important;
 }
-.el-tree-node:focus>.el-tree-node__content{
+
+.el-tree-node:focus>.el-tree-node__content {
   background-color: #070f22 !important;
-  color:#4b9bb7
+  color: #4b9bb7
 }
+
 /*瀹氫箟婊氬姩鏉¢珮瀹藉強鑳屾櫙
  楂樺鍒嗗埆瀵瑰簲妯珫婊氬姩鏉$殑灏哄*/
- ::-webkit-scrollbar
-{
-    width:4px;
-    height:4px;
-    background-color:#070f22;
+::-webkit-scrollbar {
+  width: 4px;
+  height: 4px;
+  background-color: #070f22;
 }
+
 /*瀹氫箟婊氬姩鏉¤建閬�
  鍐呴槾褰�+鍦嗚*/
-::-webkit-scrollbar-track
-{
-    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3);
-    border-radius:10px;
-    background-color:#070f22;
+::-webkit-scrollbar-track {
+  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
+  border-radius: 10px;
+  background-color: #070f22;
 }
+
 /*瀹氫箟婊戝潡
  鍐呴槾褰�+鍦嗚*/
-::-webkit-scrollbar-thumb
-{
-    border-radius:10px;
-    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);
-    background-color:#555;
+::-webkit-scrollbar-thumb {
+  border-radius: 10px;
+  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
+  background-color: #555;
+}
+
+// 璁剧疆dialog鏍峰紡
+.el-dialog__header,
+.el-dialog__body {
+  background-color: #06122c;
+}
+
+.el-dialog__header {
+  display: flex;
+  align-items: center;
+  background-color: #fff;
+  padding: 20px;
+  line-height: 60px;
+}
+
+.el-dialog__close {
+  width: 20px;
+  height: 20px;
+  // color: #fff;
+}
+
+.el-dialog__body {
+  padding: 0;
+}
+
+#app {
+  // 璁剧疆寮瑰嚭妗嗘牱寮�
+  .el-dialog__title {
+    color: #4b9bb7;
+  }
+
+  // 璁剧疆table鏍峰紡
+  .el-table__empty-block {
+    background-color: #09152f;
+  }
+
+  .el-table__empty-block {
+    color: #4b9bb7;
+  }
+
+  .el-table__empty-text {
+    color: #4b9bb7;
+  }
+
+  .el-table .warning-row {
+    background: #06122c;
+  }
+
+  .el-table .success-row {
+    background: #071f39;
+  }
+
+  .el-input__inner {
+    background-color: #09152f;
+    border: 1px solid #17324c;
+  }
 }
 </style>
\ No newline at end of file

--
Gitblit v1.8.0