File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -534,6 +534,7 @@ export default class StoreImp implements Store {
534
534
case 'backward' : {
535
535
this . _dataList = this . _dataList . concat ( data )
536
536
this . _dataLoadMore . backward = realMore . backward
537
+ this . _lastBarRightSideDiffBarCount -= dataLengthChange
537
538
adjustFlag = dataLengthChange > 0
538
539
break
539
540
}
@@ -670,15 +671,13 @@ export default class StoreImp implements Store {
670
671
}
671
672
}
672
673
// More processing and loading, more loading if there are callback methods and no data is being loaded
673
- if ( ! this . _loading && isValid ( this . _dataLoader ) && isValid ( this . _symbol ) && isValid ( this . _period ) ) {
674
- if ( from === 0 ) {
675
- if ( this . _dataLoadMore . forward ) {
676
- this . _processDataLoad ( 'forward' )
677
- }
678
- } else if ( to === totalBarCount ) {
679
- if ( this . _dataLoadMore . backward ) {
680
- this . _processDataLoad ( 'backward' )
681
- }
674
+ if ( from === 0 ) {
675
+ if ( this . _dataLoadMore . forward ) {
676
+ this . _processDataLoad ( 'forward' )
677
+ }
678
+ } else if ( to === totalBarCount ) {
679
+ if ( this . _dataLoadMore . backward ) {
680
+ this . _processDataLoad ( 'backward' )
682
681
}
683
682
}
684
683
}
You can’t perform that action at this time.
0 commit comments