|
@@ -194,8 +194,10 @@ class PushContainer extends Component {
|
|
|
makeSure(){
|
|
|
if(this.state.type == 1) {
|
|
|
store.dispatch(delItem(this.state.id))
|
|
|
+ store.dispatch(changeVisible(false))
|
|
|
}else if(this.state.type == 2){
|
|
|
store.dispatch(delBatchItem(this.props.checkItems))
|
|
|
+ store.dispatch(changeVisible(false))
|
|
|
}else if(this.state.type == 3){
|
|
|
if(this.state.title == this.state.obj.text){
|
|
|
store.dispatch(changeVisible(false))
|
|
@@ -216,8 +218,8 @@ class PushContainer extends Component {
|
|
|
pushAllDataList(typeConfig,'push',part,'template') //引用
|
|
|
}
|
|
|
})
|
|
|
+ store.dispatch(changeVisible(false))
|
|
|
}
|
|
|
- store.dispatch(changeVisible(false))
|
|
|
}
|
|
|
render() {
|
|
|
const {activeId,checkItems,visible,showMsg,items,allCheckShow} = this.props;
|