fix(utils): fix compile error (#3878)

This commit is contained in:
rex 2020-12-18 15:28:05 +08:00 committed by GitHub
parent 68f8b4e0ee
commit 76f58a12f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -83,8 +83,7 @@ export function setContentAnimate(
expanded: boolean,
mounted: boolean
) {
getRect
.call(context, '.van-collapse-item__content')
getRect(context, '.van-collapse-item__content')
.then((rect) => rect.height)
.then((height: number) => {
canIUseAnimate()

View File

@ -33,11 +33,13 @@ export function addUnit(value?: string | number): string | undefined {
return isNumber(value) ? `${value}px` : value;
}
export function requestAnimationFrame(cb: Function) {
export function requestAnimationFrame(cb: () => void) {
const systemInfo = getSystemInfoSync();
if (systemInfo.platform === 'devtools') {
return nextTick(cb);
return setTimeout(() => {
cb();
}, 1000 / 30);
}
return wx