修改el-table表头,表格和边框样式

在main.js里引入的scss文件里修改样式

比如在main.js里引入import '@/style/business.

然后直接在business设置样式就可以修改el-table表头,表格和边框样式_第1张图片

 

//tablebox 是给el-table设置的类名
//设置$TableBorder全局变量可以把body里所有的边框颜色设置一样
.tablebox{
  //表格四个边框的颜色
  border: 1px solid $lineColor !important;
  th.el-table__cell {
    border:none !important;
  }
	.el-table__header-wrapper, .el-table__fixed-header-wrapper {
        //表头的样式
		th {
			word-break: break-word;
			background:$TableThStyle !important;
			color: #939598 !important;
			height: 40px !important;
			font-size: 13px;
            border-bottom: 1px solid $TableBorder !important;
            border-right: 1px solid $TableBorder !important;
		}
	}
	.el-table__body-wrapper {
    //table_body单元格的样式
    td {
      background-color: $TableStyle !important;
      text-align: center;
      color: #e3e3ef;
    }
	}
  .el-table--border .el-table__cell, .el-table__body-wrapper td {
    //body里y轴的样式
    border-right: 1px solid $TableBorder !important ;
  }
  td.el-table__cell{
    //body里x轴的样式
    border-bottom: 1px solid $TableBorder !important  ;
  }
}

你可能感兴趣的:(vue.js,javascript,前端,elementui)