zhanghua
2025-07-16 7c20fd15b7fbc2bd5756b39d5ab655cc849ffcc3
src/App.vue
@@ -1,6 +1,6 @@
<template>
  <div id="app">
    <router-view />
    <router-view :key="$route.fullpath"/>
  </div>
</template>
<script>
@@ -49,38 +49,41 @@
};
</script>
<style lang="scss">
body {
  --operation-color: #409eff;
}
.el-select-dropdown__item {
  height: 100% !important;
}
.el-select-dropdown,
.popper-class {
  background-color: #17324c !important;
  // background-color: #17324c !important;
}
.el-select-dropdown__item.hover,
.el-select-dropdown__item:hover {
  background-color: #17324c !important;
  // background-color: #17324c !important;
}
.el-tree {
  background-color: #09152f !important;
  // background-color: #09152f !important;
}
.el-tree-node__content:hover,
.el-upload-list__item:hover {
  background-color: #09152f !important;
  // background-color: #09152f !important;
  color: #4b9bb7 !important;
}
.el-tree-node:focus > .el-tree-node__content {
  background-color: #070f22 !important;
  // background-color: #070f22 !important;
  color: #4b9bb7;
}
.button-addition {
  background-color: #eb5d01 !important;
  border: 1px solid #eb5d01 !important;
  background-color: #eb5d01;
  border: 1px solid #eb5d01;
  color: #ffffff;
}
@@ -89,7 +92,7 @@
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #070f22;
  // background-color: #070f22;
}
/*定义滚动条轨道
@@ -97,7 +100,7 @@
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #070f22;
  // background-color: #070f22;
}
/*定义滑块
@@ -111,9 +114,8 @@
// 设置dialog样式
.el-dialog__header,
.el-dialog__body {
  background-color: #06122c;
  // background-color: #06122c;
}
.el-dialog__header {
  display: flex;
  align-items: center;
@@ -121,7 +123,6 @@
  padding: 20px;
  line-height: 60px;
}
.el-dialog__close {
  width: 20px;
  height: 20px;
@@ -133,39 +134,50 @@
}
#app {
  .userList{
    height: 100%;
    overflow: auto;
  }
  .list{
    height: 100%;
    overflow: auto;
    header{
      background-color: transparent;
      border: none
    }
  }
  // 设置弹出框样式
  .el-dialog__title {
    color: #4b9bb7;
    color: #333;
  }
  .el-dialog__header {
    color: black;
    background-color: #DCDFE6;
    //border: 1px solid #DCDFE6;
  }
  // 设置table样式
  .el-table__empty-block {
    background-color: #09152f;
    // background-color: #09152f;
  }
  .el-table__empty-block {
    color: #4b9bb7;
  }
  .el-table__empty-text {
    color: #4b9bb7;
  }
  .el-table .warning-row {
    background: #06122c;
    // background: #06122c;
  }
  .el-table .success-row {
    background: #071f39;
    // background: #071f39;
  }
  .el-input__inner {
    background-color: #09152f;
    border: 1px solid #17324c;
    // background-color: #09152f;
    // border: 1px solid #17324c;
  }
  .el-textarea__inner {
    background-color: #09152f;
    border: 1px solid #17324c;
    // background-color: #09152f;
    // border: 1px solid #17324c;
  }
}
.el-table__body-wrapper::-webkit-scrollbar {
@@ -183,6 +195,6 @@
  background-color: rgb(145, 143, 143); /*滚动条的背景颜色*/
}
.el-range-input {
  background-color: #09152f;
  // background-color: #09152f;
}
</style>
</style>