当前位置:   article > 正文

对于超出一行的文本进行(展开/收起)操作的vue组件,实测好用_vue 判断内容是否超过一行

vue 判断内容是否超过一行

完整功能复用

1、对于超出一行的文本进行(展开/收起)操作,实测好用

<template>
  <!-- 多出一行出现展开、收起按钮 -->
  <div class="top-tips">
    <div :class="isOpen ? '' : 'tipsBox'">
      <span class="f14 potips" :class="isOpen ? '' : 'van-ellipsis opentext'">
        <span class="remekTitle">{{ title }}</span><span>{{ text }} </span>
      </span>
      <span v-if="showopen" class="f14 inTips" @click="inTips">
        {{ isOpen ? "收起" : "展开" }}
      </span>
    </div>
  </div>
</template>

<script>
export default {
  name: "textTips",
  data() {
    return {
      isOpen: false, //默认展开|收起
      showopen: true, //是否显示展开|收起按钮(文字)
    };
  },
  props: {
    // 显示的文字
    text: {
      type: String,
      default: "none",
      required: true,
    },
    // 标题
    title: {
      type: String,
      default: "none",
      required: true,
    },
  },
  created() {
    this.showopen = this.isLineWrap(); // 是否超出一行(超出则显示展开/收起)
  },
  methods: {
    inTips() {
      this.isOpen = !this.isOpen;
    },
      // 判断是否产出一行的函数
    isLineWrap(text = this.text) {
      const getBLen = function (str) {
        if (str == null) return 0;
        if (typeof str != "string") {
          str += "";
        }
        return str.replace(/[^\x00-\xff]/g, "01").length;
      };
      if (this.platform === "pc") {
        const lineWidth = 334;
        const textLine = getBLen(text) * 9.5;
        return textLine > lineWidth;
      } else {
        const fontSizeSty = document.documentElement.style.fontSize;
        const fontSize = Number(fontSizeSty.slice(0, fontSizeSty.length - 2));
        const textLine = fontSize * getBLen(text) * 0.16;
        const lineWidth = 4.56 * fontSize;
        return textLine > lineWidth;
      }
    },
  },
};
</script>

<style lang="scss" scoped>
.top-tips {
  display: flex;
  align-items: center;
  // padding: 5px 0;
  position: relative;
  .potips {
    padding: 2px 0;
    color: #9ea4a9;
    min-height: 16px;
  }
  .inTips {
    color: rgb(91, 169, 245);
  }
  .tipsBox {
    // 是否在一行显示,或者自认换行
    display: flex;
    align-items: baseline;
    width: 100%;
  }
}
.opentext {
  min-width: 90%;
  max-width: 38%;
  display: inline-block;
}
.van-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.asdasd {
  display: inline-block;
  width: 40px;
  height: 20px;
}
.flex {
  display: flex;
}
.remekTitle {
  display: inline-block;
  padding-bottom: 3px;
}
</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
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114

2、 组件的调用-也十分简单,一般来说使用场景在备注信息比较常见

<TextTips
          :title="'备注'"
          :text="需要展示的数据需要展示的数据需要展示的数据需要展示的数据需要展示的数据需要展示的数据"
          >
</TextTips>
  • 1
  • 2
  • 3
  • 4
  • 5

3、效果展示

在这里插入图片描述
在这里插入图片描述

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

闽ICP备14008679号