diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index f98121e..61c4fd9 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -154,7 +154,7 @@ body, position: static !important; .el-drawer { - width: 900px !important; + width: 960px !important; background-color: transparent; box-shadow: none; } @@ -503,60 +503,14 @@ body, } } -//el-select 下拉框样式 -.el-select__popper { - margin-top: -12px !important; - background: #072247 !important; - border: 1px solid #0F82AF !important; +.el-dropdown-menu__item:not(.is-disabled):focus { + background-color: transparent !important; } - -.el-popper { - max-width: 200px !important; - box-sizing: border-box; -} - .el-popper__arrow::before { display: none; } - -.el-select-dropdown { - width: 200px !important; -} - -.el-select-dropdown__item { - > span { - color: #FFFFFF; - } -} - -.el-select .el-input .el-select__caret { - font-size: 35px !important; -} - -.el-select-dropdown__item.hover, .el-select-dropdown__item:hover { - background-color: #064B66 !important; - width: 198px !important; -} - -.el-select-dropdown.is-multiple .el-select-dropdown__item.selected { - background-color: #064B66 !important; - width: 200px !important; -} - -.el-select-tags-wrapper { - .el-tag { - padding: 28px 20px !important; - font-size: 35px; - - .el-icon { - width: 40px; - height: 40px; - font-size: 40px !important; - } - } -} - .current-site { + .el-select-dropdown { width: 200px !important; } @@ -671,3 +625,42 @@ input[type="number"] { background-color: transparent !important; color: #60DDDE !important; } +.showNull{ + font-size:35px; + min-height: 350px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + color: #2fb0df; + letter-spacing: 3px; +} +//loading +.loading-block{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height:900px; + font-size: 55px; + color: #38CAFB; + letter-spacing: 3px; +} +.loading { + margin-bottom: 20px; + width: 100px; + height: 100px; + border: 2px solid #38CAFB; + border-top-color: transparent; + border-radius: 100%; + animation: circle infinite 0.75s linear; +} +// 转转转动画 +@keyframes circle { + 0% { + transform: rotate(0); + } + 100% { + transform: rotate(360deg); + } +} diff --git a/src/components/content/airInfo/AirInfo.vue b/src/components/content/airInfo/AirInfo.vue index da15cf9..63769b9 100644 --- a/src/components/content/airInfo/AirInfo.vue +++ b/src/components/content/airInfo/AirInfo.vue @@ -1,27 +1,29 @@