mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Sticky): Cannot read property 'top' of null (#4433)
* fix(Sticky): Cannot read property 'top' of null * retry build * fix: build * fix: retry * fix(Sticky): return if root is null * fix(Calendar): wrapper Date type - to fixed build failed * fix(Sticky): use isDef
This commit is contained in:
parent
c044f7534f
commit
35647969f5
@ -201,11 +201,11 @@ VantComponent({
|
||||
const start = this.limitDateRange(
|
||||
startDay || now,
|
||||
minDate,
|
||||
getPrevDay(maxDate).getTime()
|
||||
getPrevDay(new Date(maxDate)).getTime()
|
||||
);
|
||||
const end = this.limitDateRange(
|
||||
endDay || now,
|
||||
getNextDay(minDate).getTime()
|
||||
getNextDay(new Date(minDate)).getTime()
|
||||
);
|
||||
return [start, end];
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
import { getRect } from '../common/utils';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { isDef } from '../common/validator';
|
||||
import { pageScrollMixin } from '../mixins/page-scroll';
|
||||
|
||||
const ROOT_ELEMENT = '.van-sticky';
|
||||
@ -89,6 +90,9 @@ VantComponent({
|
||||
}
|
||||
|
||||
getRect(this, ROOT_ELEMENT).then((root) => {
|
||||
if (!isDef(root)) {
|
||||
return;
|
||||
}
|
||||
if (offsetTop >= root.top) {
|
||||
this.setDataAfterDiff({ fixed: true, height: root.height });
|
||||
this.transform = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user