|
@@ -6,7 +6,7 @@ import {initItemList} from "@store/async-actions/historyTemplates";
|
|
|
import {visibleHistory,showHistory} from "@store/actions/historyTemplates";
|
|
|
import store from '@store';
|
|
|
import { ConfirmModal } from '@commonComp';
|
|
|
-import { pushAllDataList } from '@utils/tools';
|
|
|
+import { pushAllDataList,didPushParamChange } from '@utils/tools';
|
|
|
import { CONFIRM_TYPE } from "@store/types/typeConfig";
|
|
|
import {billing} from '@store/async-actions/pushMessage';
|
|
|
import { dragBox } from '@utils/drag';
|
|
@@ -23,7 +23,9 @@ class HistoryCaseContainer extends React.Component {
|
|
|
store.dispatch(showHistory(false))
|
|
|
store.dispatch({type: CONFIRM_TYPE, confirmType: baseObj.sign});
|
|
|
pushAllDataList(baseObj.sign,'push',baseObj,'history') //引用
|
|
|
- store.dispatch(billing())
|
|
|
+ if(didPushParamChange()){
|
|
|
+ store.dispatch(billing())
|
|
|
+ }
|
|
|
dragBox('hisWrapMove','closeHis','del')
|
|
|
}
|
|
|
close(){
|