要自定义修改el-tableshow-overflow-tooltip样式,你可以通过以下步骤进行:

  1. 首先,在你的项目中引入element-ui库。如果你还没有安装,可以使用以下命令进行安装:
npm install element-ui --save
  1. 在你的项目的main.js文件中引入element-ui并注册为Vue插件:
import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';

Vue.use(ElementUI);
  1. 在你的组件中,使用el-table组件,并设置show-overflow-tooltip属性为true
<template>
  <el-table :data="tableData" show-overflow-tooltip>
    <!-- 表格列定义 -->
  </el-table>
</template>

<script>
export default {
  data() {
    return {
      tableData: [
        // 表格数据
      ],
    };
  },
};
</script>
  1. 接下来,你需要自定义show-overflow-tooltip的样式。在你的项目的App.vue或者其他需要自定义样式的组件中,添加以下样式规则:
<style scoped>
.el-table__body-wrapper {
  /* 自定义样式 */
}
</style>
  1. 最后,根据你的需求修改.el-table__body-wrapper的样式。例如,你可以修改提示框的背景颜色、字体大小等:
<style scoped>
.el-table__body-wrapper {
  --el-table-tooltip-bg-color: #f0f9eb;
  --el-table-tooltip-color: #606c7a;
  --el-table-tooltip-font-size: 14px;
}
</style>

这样,你就可以自定义修改el-tableshow-overflow-tooltip样式了。