import React,{Component} from 'react'; import style from './index.less'; import config from '@config/index.js'; import Notify from '../Notify/index.js'; import ReactDom from "react-dom"; import backspace from '../../images/backspace.png' class NumberUnitPan extends Component{ constructor(props){ super(props); this.state = { value:'' } this.handleSelect = this.handleSelect.bind(this); } handleSelect(e){ e.stopPropagation(); const text = e.target.innerText || e.target.innerHTML; const preValue = this.state.value; if(+text==0 && !preValue){//第一位不能是0 Notify.info("请输入正确时间"); return false; } const value = this.props.toClear?'':this.state.value; //键盘输入替换已有的值 const onSelect = this.props.handleSelect; this.setState({ value: value+text }); onSelect&&onSelect({text:value+text,mark:true});//增加mark参数,清空删除不提示字数限制 } handleClear(e){ e.stopPropagation(); const onSelect = this.props.handleSelect; this.setState({ value: '' }); onSelect&&onSelect({text:'',mark:false}); } handleClose(e){ e.stopPropagation(); //关闭弹窗 const {onClose} = this.props; onClose&&onClose(); } handleBack(e){ e.stopPropagation(); // const value = this.state.value; const value = this.props.value; const len = value.length-1; if(len<0){ return; } const onSelect = this.props.handleSelect; const text = value.substring(0,len); this.setState({ value:text }); onSelect&&onSelect({text,mark:false}); } getStyle(){ const {left,top,show} = this.props; return { left:left?left+'px':'0', top:top?top+'px':'0', display:show?'table':'none' //table onBlur阻止冒泡是为了修复multSpread中数字键盘点击触发最外层数字组件onBlur事件 } } componentWillReceiveProps(nextProps){ //重新选择的值替换 不追加 if(!nextProps.show){ this.setState({ value:'' }); } } render(){ // const select = this.handleSelect.bind(this); const domNode = document.getElementById('root'); return ReactDom.createPortal(
e.stopPropagation()} style={this.getStyle()}>
1 2 3
4 5 6
7 8 9
. 0 /
清空 确定
,domNode) } } export default NumberUnitPan;