qtsk-vue3 0.0.21 → 0.0.22
Sign up to get free protection for your applications and to get access to all the features.
@@ -6,7 +6,7 @@
|
|
6
6
|
:data="data"
|
7
7
|
style="width: 100%"
|
8
8
|
:height="height"
|
9
|
-
:header-cell-style="{background:'#f2f4f7', color:'#606266',height: '
|
9
|
+
:header-cell-style="{background:'#f2f4f7', color:'#606266',height: '50px'}"
|
10
10
|
@selection-change="handleSelectionChange"
|
11
11
|
>
|
12
12
|
<el-table-column v-if="checkbox" type="selection" width="55" :selectable="selectable"/>
|
@@ -93,6 +93,12 @@ defineExpose({
|
|
93
93
|
|
94
94
|
<style lang="less" scoped>
|
95
95
|
:deep(.el-table__row){
|
96
|
-
height:
|
96
|
+
height: 40px;
|
97
|
+
}
|
98
|
+
:deep(th) {
|
99
|
+
background: #F5F5F9!important;
|
100
|
+
}
|
101
|
+
:deep(tbody .el-table__cell) {
|
102
|
+
padding: 0;
|
97
103
|
}
|
98
104
|
</style>
|
package/package/style/root.css
CHANGED