liuyg
2021-07-17 701e35c3852f384598bcf9aa59d94fe54b62bc68
样式
4 files modified
66 ■■■■■ changed files
src/styles/element-ui.scss 29 ●●●● patch | view | raw | blame | history
src/styles/ourBackgroundColor.scss 15 ●●●●● patch | view | raw | blame | history
src/styles/sidebar.scss 2 ●●● patch | view | raw | blame | history
src/views/securityUnitOperation/operationTable.vue 20 ●●●● patch | view | raw | blame | history
src/styles/element-ui.scss
@@ -92,13 +92,13 @@
  background-color: $mainB !important;
}
.el-table {
  background-color: $tableColor !important;
  background-color: $mainB !important;
  color: $fontColor !important;
}
.el-table th,
.el-table tr {
  background-color: $tableColor !important;
  background-color: $mainB !important;
  color: $fontColor !important;
}
.el-table__body tr.hover-row > td {
@@ -193,7 +193,7 @@
//表格等待
.el-loading-mask {
  background-color: $inputB1 !important;
  background-color: $mainB !important;
}
//附件上传弹窗中心
@@ -298,22 +298,14 @@
//左侧导航栏
.avue-logo {
  background-color: $leftMenuB1 !important;
  background-color: $mainB !important;
}
.avue-sidebar {
  background-color: $leftMenuB1 !important;
  background-color: $mainB !important;
}
.el-scrollbar__view,
.el-select-dropdown__list {
  background-color: $leftMenuB1 !important;
}
//hover
.theme-deep-bule .avue-sidebar .el-menu-item.is-active {
  background-color: $leftMenuB1hover !important;
}
//表格搜索 下拉
// .el-scrollbar__view,
.el-scrollbar__view,
.el-select-dropdown__list {
  background-color: $mainB !important;
}
@@ -384,12 +376,7 @@
.el-textarea__inner {
  color: $fontColor !important;
}
// //通知公告 白色bug
// .el-table--striped .el-table__body tr.el-table__row--striped td {
//   background-color: transparent !important;
// }
//左侧辖区
.box .el-scrollbar__wrap .el-scrollbar__view {
//通知公告 白色bug
.el-table--striped .el-table__body tr.el-table__row--striped td {
  background-color: transparent !important;
}
src/styles/ourBackgroundColor.scss
@@ -1,18 +1,17 @@
$black: #03277c;
$leftMenuB: #0546de;
$leftMenuB: #1446dd;
$leftMenuB1: #0546de;
$leftMenuB1hover: #023ea0;
$leftMenuTop: #1446dd;
$fontColor: #fff;
$mainB2: #0048e5;
$mainB2: #205de2;
$mainB: #004ca7;
$mainBx1: #023ea0;
$mainBx1: #013e8a;
$mainBx2: #03277c;
$mainBhover: #3970e7;
$mainBhover: #1d5ce4;
$fontColorActive: #2f96ff;
$fontColorActive1: #52a9ff;
@@ -21,6 +20,4 @@
$buttonB: #7cbdff;
$inputB1: rgb(25, 88, 233);
$tableColor: rgba(24, 82, 218, 0.911);
$inputB1: #2d5cc8;
src/styles/sidebar.scss
@@ -37,7 +37,7 @@
    padding-top: 60px;
    height: 100%;
    position: relative;
    background-color: $leftMenuB1 !important;
    // background-color: $leftMenuB1 !important;
    // background-color: #20222a;
    transition: width 0.2s;
    box-sizing: border-box;
src/views/securityUnitOperation/operationTable.vue
@@ -24,24 +24,24 @@
        {
          date: "2016-05-02",
          name: "王小虎",
          address: "上海市普陀区金沙江路 1518 弄"
          address: "上海市普陀区金沙江路 1518 弄",
        },
        {
          date: "2016-05-04",
          name: "王小虎",
          address: "上海市普陀区金沙江路 1517 弄"
          address: "上海市普陀区金沙江路 1517 弄",
        },
        {
          date: "2016-05-01",
          name: "王小虎",
          address: "上海市普陀区金沙江路 1519 弄"
          address: "上海市普陀区金沙江路 1519 弄",
        },
        {
          date: "2016-05-03",
          name: "王小虎",
          address: "上海市普陀区金沙江路 1516 弄"
        }
      ]
          address: "上海市普陀区金沙江路 1516 弄",
        },
      ],
    };
  },
  methods: {
@@ -50,12 +50,12 @@
      let etout = XLSX.write(et, {
        bookType: "xlsx",
        bookSST: true,
        type: "array"
        type: "array",
      });
      try {
        FileSaver.saveAs(
          new Blob([etout], {
            type: "application/octet-stream"
            type: "application/octet-stream",
          }),
          `表.xlsx`
        ); //导出的文件名
@@ -63,9 +63,9 @@
        console.log(e, etout);
      }
      return etout;
    }
    },
  },
  mounted() {}
  mounted() {},
};
</script>
<style>