el-table中里面的show-overfloe-tooltip修改样式

<el-table

        :data="tableData"

        :max-height="'753'"

        :tooltip-effect="'tooltipStyle’”     //重点

      >

        <el-table-column

          prop="replacereason"

          label="更改原因"

          :show-overflow-tooltip="true"

        ></el-table-column>

</el-table>

.is-tooltipStyle {

  background: #fff;

  color: #3759af;

  border: 1px solid rgb(158, 157, 157);

  font-size: 15px;

}

猜你喜欢

转载自blog.csdn.net/and_life/article/details/130638122