jinhui.wang

样式修改

......@@ -1116,7 +1116,7 @@ input:disabled {
}
.el-dialog__body {
padding: 10px 50px !important;
padding: 10px 30px !important;
}
}
......@@ -1177,3 +1177,65 @@ input:disabled {
}
}
}
.el-table__body-wrapper {
&::-webkit-scrollbar {
height: 8px;
width: 8px;
}
&::-webkit-scrollbar-track {
background-color: #fff;
}
&::-webkit-scrollbar-thumb {
background-color: #ccc;
}
&::-webkit-scrollbar-thumb:hover {
background-color: #409eff;
}
}
.el-scrollbar__wrap {
&::-webkit-scrollbar {
height: 0px;
width: 0px;
}
}
// 当表格有纵向滚动条时
.el-table--scrollable-y .el-table__fixed-right {
right: 7px !important;
}
// 当表格只有横向滚动条,没有纵向滚动条时
.el-table--scrollable-x:not(.el-table--scrollable-y) .el-table__fixed-right {
right: 0 !important;
}
::-webkit-scrollbar {
height: 8px;
width: 8px;
}
::-webkit-scrollbar-track {
background-color: #fff;
}
::-webkit-scrollbar-thumb {
background-color: #ccc;
}
::-webkit-scrollbar-thumb:hover {
background-color: #409eff;
}
.el-scrollbar__wrap {
&::-webkit-scrollbar {
height: 0px;
width: 0px;
}
}
\ No newline at end of file
......
......@@ -105,8 +105,8 @@
prop="option"
label=""
:fixed="false"
align="right"
width="120"
align="center"
width="150"
>
<template slot-scope="scope">
<div class="historyOption">
......@@ -180,7 +180,7 @@ export default {
{
label: "ACTION",
prop: "action",
width: 180,
width: 100,
align: "left",
},
],
......