|
@@ -78,7 +78,7 @@ class SlidePic extends Component {
|
|
|
$(e.target).removeAttr('disabled').focus()
|
|
|
}
|
|
|
render() {
|
|
|
- const {item,time,setTipValue,idx} = this.props;
|
|
|
+ const {item,time,setTipValue,idx,handlePush} = this.props;
|
|
|
const {canEdit,activeInd,activeName,value,style} = this.state;
|
|
|
return (
|
|
|
<li key={item.time} className={`${styles.slideLi} clearfix`}>
|
|
@@ -101,7 +101,7 @@ class SlidePic extends Component {
|
|
|
}
|
|
|
</span>
|
|
|
<span className={styles.pass}>
|
|
|
- <SlideIpt item={item} setTipValue={setTipValue} idx={idx}/>
|
|
|
+ <SlideIpt item={item} setTipValue={setTipValue} handlePush={handlePush} idx={idx}/>
|
|
|
</span>
|
|
|
<span id="addClose" className={styles.partDel} onClick={()=>{this.handleDel(item.time)}}></span>
|
|
|
<DelToast show={time==item.time&&activeInd?true:false}
|