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 {
534534 case 'backward' : {
535535 this . _dataList = this . _dataList . concat ( data )
536536 this . _dataLoadMore . backward = realMore . backward
537+ this . _lastBarRightSideDiffBarCount -= dataLengthChange
537538 adjustFlag = dataLengthChange > 0
538539 break
539540 }
@@ -670,15 +671,13 @@ export default class StoreImp implements Store {
670671 }
671672 }
672673 // 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' )
682681 }
683682 }
684683 }
You can’t perform that action at this time.
0 commit comments