import React, { Component } from "react"; import styles from "../index.less"; import $ from 'jquery'; import { windowEventHandler,setFontColorSize } from '@utils/tools'; import checkOff from '@common/images/check_off.png'; import checkOn from '@common/images/check_on.png'; class AssistName extends Component { constructor(props) { super(props); this.state = { }; this.$assistName = React.createRef(); this.splitName = this.splitName.bind(this); this.checkOnOff = this.checkOnOff.bind(this); } splitName(name){ let wid = this.props.winWidth; if(name.length>15 && wid>1150){ let tmpStr = name.substr(0,15) return tmpStr+'...' }else{ return name } } checkOnOff(item){ const {checkOnOff,handlePush} = this.props checkOnOff(item) handlePush && handlePush({mode:8}); //右侧推送 } render() { const { winWidth, name, getInfomation,normal,item } = this.props; return ( this.checkOnOff(item)} alt=""/> {name&&this.splitName(name)}: {/* getInfomation({ name: name, position: 1, type: 6 })}> */} ); } } export default AssistName;