当前位置:   article > 正文

【ElementUI】ElementUI Tooltip 根据内容判断是否显示、文字提示自定义样式_el-tooltip根据内容自适应显示tooltip

el-tooltip根据内容自适应显示tooltip

【ElementUI】ElementUI Tooltip 根据内容判断是否显示、文字提示自定义样式

封装组件自定义内容

<template>
  <span v-if="['', null, undefined].indexOf(content) === -1">
    <el-tooltip :content="content" effect="light" placement="bottom" popper-class="tooltip-box">
      <slot></slot>
    </el-tooltip>
  </span>
  <span v-else>
    <slot></slot>
  </span>
</template>

<script>
export default {
  name: "tooltipBox",
  props: {
    content: {
      type: String,
      default: "",
    },
  },
};
</script>

<style>
.tooltip-box.el-tooltip__popper .popper__arrow {
  /* 上方箭头 */
  border-top-color: #e8f4ff !important;
  /* 下方箭头 */
  border-bottom-color: #e8f4ff !important;
}

.tooltip-box.el-tooltip__popper .popper__arrow:after {
  border-top-color: #e8f4ff !important;
  border-bottom-color: #e8f4ff !important;
}

/* tooltip主体部分 */
.tooltip-box.el-tooltip__popper {
  color: #1890ff;
  background-color: #e8f4ff !important;
  border-color: #d1e9ff !important;
  box-shadow: 0px 0px 7px 0px rgba(42, 42, 42, 0.2) !important;
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44

使用封装的组件

import tooltipBox from "./components/tooltipBox";

export default {
  components: {
    tooltipBox
  },
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
<el-table-column label="讲课内容" align="center" prop="lectureContent">
  <template slot-scope="scope">
    <tooltipBox :content="scope.row.lectureContent">
      <el-input v-model="scope.row.lectureContent"></el-input>
    </tooltipBox>
  </template>
</el-table-column>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/91871
推荐阅读
相关标签
  

闽ICP备14008679号