Procházet zdrojové kódy

优化表头样式

lincl před 1 rokem
rodič
revize
c941f2bd46
1 změnil soubory, kde provedl 10 přidání a 2 odebrání
  1. 10 2
      src/components/TablePage/index.vue

+ 10 - 2
src/components/TablePage/index.vue

@ -80,7 +80,7 @@
		<div class="box-flex-1 table-content" style="position:relative">
			<div style="position:absolute;height:100%;width:100%">
				<el-table ref="table" v-on="$listeners" v-bind="$attrs" v-loading="loading" :border="$attrs.border!==false? true : false" :height="$attrs.height===false? '' :  ($attrs.height||'100%')" style="width: 100%; ">
				<el-table ref="table" v-on="$listeners" v-bind="$attrs" v-loading="loading" header-row-class-name="cus-table-header" :border="$attrs.border!==false? true : false" :height="$attrs.height===false? '' :  ($attrs.height||'100%')" style="width: 100%; ">
					<el-table-column
						v-if="configs.selection"
						type="selection"
@ -307,12 +307,14 @@ export default {
    height: 100%;
	.table-content{
		-webkit-box-flex: 1;
		
	}
    .bot-pagination{
		height: 50px;
		.pagination {
            float: right;
            margin-top: 12px;
            margin-top: 11px;
			padding: 0;
        }
		.bot-pagination-left{
			float: left;
@ -333,5 +335,11 @@ export default {
	.radioGroup-item{
		display: block;
	}
	.cus-table-header{
		th.el-table__cell{
			background-color: #F0F2F5;
		}
		
	}
}
</style>