forked from huge/frontEnd/hugeOA

2
liuwh
2020-04-06 783fba8034fdde6651bc6932852a04072813fd67
src/components/common/NotifyList/index.jsx
@@ -34,11 +34,15 @@
  componentDidMount() { }
  onClick = () => {
    this.props.history.push({ pathname: "/index/workbench/announcement" });
  }
  renderDom = () => {
    let { content } = this.state;
    return <div className="notify-list-main-dom">
      <span className="notify-list-main-dom-msg">最新通知:{content}</span>
      <span className="notify-list-main-dom-fuc">[查看全部]</span>
      <span className="notify-list-main-dom-msg">最新通知:公司本部从XX时间开始,调整省略很长很长的内容调整省略很长很长的内容公司本部从XX时间开始,调整省略很长很长的内容调整省略很长很长的内容公司本部从XX时间开始,调整省略很长很长的内容调整省略很长很长的内容</span>
      <span className="notify-list-main-dom-fuc" onClick={this.onClick}>[查看全部]</span>
    </div>
  }