表格对齐
body .el-table th.gutter {
display:table-cell !important;
}
表头tooltip:
<el-table-column
header-align="center"
prop="E001"
v-if="spidersErrorMsgShow"
sortable
width="85px">
<template slot-scope="scope" slot="header">
<el-tooltip effect="dark"
:content="handleErrorMsg('E001')"
placement="top">
<span>EOO1</span>
</el-table-column>
网友评论