ant Table td 溢出隱藏(省略號)


1.創建組件

components/LineWrap/index.js

/**
 * td 溢出隱藏 組件
 */
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { Tooltip } from 'antd';
import Styles from './index.less';

export default class LineWrap extends PureComponent {
  static propTypes = {
    title: PropTypes.string,
    lineClampNum: PropTypes.number,
  };

  render() {
    const { title, lineClampNum } = this.props;
    return (
      <Tooltip placement="topLeft" title={title}>
        <span className={Styles.lineEllipsis} style={{WebkitLineClamp:lineClampNum}}>{title}</span>
      </Tooltip>
    );
  }
}

components/LineWrap/index.less

.lineEllipsis{
  display: -webkit-box;
  // -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

2.引用

width: '35%',
render:(text,record) => {
  return <LineWrap title={text} lineClampNum={2} />
}

3.效果圖


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM