From 16cd5405786aa0071ac4dcc0b4d6d5e87cd71227 Mon Sep 17 00:00:00 2001 From: rex Date: Fri, 17 Jul 2020 16:32:52 +0800 Subject: [PATCH] build: compile 1.4.0 --- dist/calendar/index.js | 5 +-- dist/collapse-item/index.js | 59 +++++++++++++++--------------- dist/collapse-item/index.wxml | 6 ++-- dist/collapse-item/index.wxss | 2 +- dist/datetime-picker/index.js | 4 +-- lib/collapse-item/index.js | 67 ++++++++++++++++------------------- lib/collapse-item/index.wxml | 6 ++-- lib/collapse-item/index.wxss | 2 +- 8 files changed, 71 insertions(+), 80 deletions(-) diff --git a/dist/calendar/index.js b/dist/calendar/index.js index 280056fc..e953c6f4 100644 --- a/dist/calendar/index.js +++ b/dist/calendar/index.js @@ -41,10 +41,7 @@ VantComponent({ }, }, allowSameDay: Boolean, - confirmDisabledText: { - type: String, - value: '确定', - }, + confirmDisabledText: String, type: { type: String, value: 'single', diff --git a/dist/collapse-item/index.js b/dist/collapse-item/index.js index ed260930..9ff56b8f 100644 --- a/dist/collapse-item/index.js +++ b/dist/collapse-item/index.js @@ -1,5 +1,4 @@ import { VantComponent } from '../common/component'; -const nextTick = () => new Promise((resolve) => setTimeout(resolve, 20)); VantComponent({ classes: ['title-class', 'content-class'], relation: { @@ -25,20 +24,17 @@ VantComponent({ }, }, data: { - contentHeight: 0, expanded: false, - transition: false, + }, + created() { + this.animation = wx.createAnimation({ + duration: 0, + timingFunction: 'ease-in-out', + }); }, mounted() { - this.updateExpanded() - .then(nextTick) - .then(() => { - const data = { transition: true }; - if (this.data.expanded) { - data.contentHeight = 'auto'; - } - this.setData(data); - }); + this.updateExpanded(); + this.inited = true; }, methods: { updateExpanded() { @@ -53,25 +49,37 @@ VantComponent({ const expanded = accordion ? value === currentName : (value || []).some((name) => name === currentName); - const stack = []; if (expanded !== this.data.expanded) { - stack.push(this.updateStyle(expanded)); + this.updateStyle(expanded); } - stack.push(this.set({ index, expanded })); - return Promise.all(stack); + this.setData({ index, expanded }); }, updateStyle(expanded) { - return this.getRect('.van-collapse-item__content') + const { inited } = this; + this.getRect('.van-collapse-item__content') .then((rect) => rect.height) .then((height) => { + const { animation } = this; if (expanded) { - return this.set({ - contentHeight: height ? `${height}px` : 'auto', + animation + .height(height) + .top(1) + .step({ + duration: inited ? 300 : 1, + }) + .height('auto') + .step(); + this.setData({ + animation: animation.export(), }); + return; } - return this.set({ contentHeight: `${height}px` }) - .then(nextTick) - .then(() => this.set({ contentHeight: 0 })); + animation.height(height).top(0).step({ duration: 1 }).height(0).step({ + duration: 300, + }); + this.setData({ + animation: animation.export(), + }); }); }, onClick() { @@ -83,12 +91,5 @@ VantComponent({ const currentName = name == null ? index : name; this.parent.switch(currentName, !expanded); }, - onTransitionEnd() { - if (this.data.expanded) { - this.setData({ - contentHeight: 'auto', - }); - } - }, }, }); diff --git a/dist/collapse-item/index.wxml b/dist/collapse-item/index.wxml index 91afbc2d..ae4cc831 100644 --- a/dist/collapse-item/index.wxml +++ b/dist/collapse-item/index.wxml @@ -31,9 +31,9 @@ />