diff --git a/dist/area/index.js b/dist/area/index.js
index 1e3e8d50..3b3494de 100644
--- a/dist/area/index.js
+++ b/dist/area/index.js
@@ -1,7 +1,7 @@
import { VantComponent } from '../common/component';
import { pickerProps } from '../picker/shared';
import { requestAnimationFrame } from '../common/utils';
-const COLUMNSPLACEHOLDERCODE = '000000';
+const EMPTY_CODE = '000000';
VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'],
props: Object.assign(Object.assign({}, pickerProps), {
@@ -20,11 +20,6 @@ VantComponent({
columnsNum: {
type: null,
value: 3,
- observer(value) {
- this.setData({
- displayColumns: this.data.columns.slice(0, +value),
- });
- },
},
columnsPlaceholder: {
type: Array,
@@ -41,7 +36,6 @@ VantComponent({
}),
data: {
columns: [{ values: [] }, { values: [] }, { values: [] }],
- displayColumns: [{ values: [] }, { values: [] }, { values: [] }],
typeToColumnsPlaceholder: {},
},
mounted() {
@@ -62,7 +56,7 @@ VantComponent({
onConfirm(event) {
const { index } = event.detail;
let { value } = event.detail;
- value = this.parseOutputValues(value);
+ value = this.parseValues(value);
this.emit('confirm', { value, index });
},
emit(type, detail) {
@@ -70,16 +64,17 @@ VantComponent({
delete detail.value;
this.$emit(type, detail);
},
- // parse output columns data
- parseOutputValues(values) {
+ parseValues(values) {
const { columnsPlaceholder } = this.data;
return values.map((value, index) => {
- // save undefined value
- if (!value) return value;
- value = JSON.parse(JSON.stringify(value));
- if (!value.code || value.name === columnsPlaceholder[index]) {
- value.code = '';
- value.name = '';
+ if (
+ value &&
+ (!value.code || value.name === columnsPlaceholder[index])
+ ) {
+ return Object.assign(Object.assign({}, value), {
+ code: '',
+ name: '',
+ });
}
return value;
});
@@ -90,7 +85,7 @@ VantComponent({
this.setValues().then(() => {
this.$emit('change', {
picker,
- values: this.parseOutputValues(picker.getValues()),
+ values: this.parseValues(picker.getValues()),
index,
});
});
@@ -100,13 +95,12 @@ VantComponent({
return (areaList && areaList[`${type}_list`]) || {};
},
getList(type, code) {
- const { typeToColumnsPlaceholder } = this.data;
- let result = [];
if (type !== 'province' && !code) {
- return result;
+ return [];
}
+ const { typeToColumnsPlaceholder } = this.data;
const list = this.getConfig(type);
- result = Object.keys(list).map((code) => ({
+ let result = Object.keys(list).map((code) => ({
code,
name: list[code],
}));
@@ -123,8 +117,8 @@ VantComponent({
type === 'province'
? ''
: type === 'city'
- ? COLUMNSPLACEHOLDERCODE.slice(2, 4)
- : COLUMNSPLACEHOLDERCODE.slice(4, 6);
+ ? EMPTY_CODE.slice(2, 4)
+ : EMPTY_CODE.slice(4, 6);
result.unshift({
code: `${code}${codeFill}`,
name: typeToColumnsPlaceholder[type],
@@ -148,35 +142,25 @@ VantComponent({
return 0;
},
setValues() {
- const county = this.getConfig('county');
- let { code } = this;
- if (!code) {
- if (this.data.columnsPlaceholder.length) {
- code = COLUMNSPLACEHOLDERCODE;
- } else if (Object.keys(county)[0]) {
- code = Object.keys(county)[0];
- } else {
- code = '';
- }
- }
- const province = this.getList('province');
- const city = this.getList('city', code.slice(0, 2));
const picker = this.getPicker();
if (!picker) {
return;
}
+ let code = this.code || this.getDefaultCode();
+ const provinceList = this.getList('province');
+ const cityList = this.getList('city', code.slice(0, 2));
const stack = [];
const indexes = [];
const { columnsNum } = this.data;
if (columnsNum >= 1) {
- stack.push(picker.setColumnValues(0, province, false));
+ stack.push(picker.setColumnValues(0, provinceList, false));
indexes.push(this.getIndex('province', code));
}
if (columnsNum >= 2) {
- stack.push(picker.setColumnValues(1, city, false));
+ stack.push(picker.setColumnValues(1, cityList, false));
indexes.push(this.getIndex('city', code));
- if (city.length && code.slice(2, 4) === '00') {
- [{ code }] = city;
+ if (cityList.length && code.slice(2, 4) === '00') {
+ [{ code }] = cityList;
}
}
if (columnsNum === 3) {
@@ -194,9 +178,27 @@ VantComponent({
.then(() => picker.setIndexes(indexes))
.catch(() => {});
},
+ getDefaultCode() {
+ const { columnsPlaceholder } = this.data;
+ if (columnsPlaceholder.length) {
+ return EMPTY_CODE;
+ }
+ const countyCodes = Object.keys(this.getConfig('county'));
+ if (countyCodes[0]) {
+ return countyCodes[0];
+ }
+ const cityCodes = Object.keys(this.getConfig('city'));
+ if (cityCodes[0]) {
+ return cityCodes[0];
+ }
+ return '';
+ },
getValues() {
const picker = this.getPicker();
- return picker ? picker.getValues().filter((value) => !!value) : [];
+ if (!picker) {
+ return [];
+ }
+ return this.parseValues(picker.getValues().filter((value) => !!value));
},
getDetail() {
const values = this.getValues();
diff --git a/dist/area/index.wxml b/dist/area/index.wxml
index 60757941..f7dc51f5 100644
--- a/dist/area/index.wxml
+++ b/dist/area/index.wxml
@@ -1,3 +1,5 @@
+
+
+export declare function setContentAnimate(
+ context: WechatMiniprogram.Component.TrivialInstance,
+ expanded: boolean,
+ mounted: boolean
+): void;
diff --git a/dist/collapse-item/animate.js b/dist/collapse-item/animate.js
new file mode 100644
index 00000000..c3f15927
--- /dev/null
+++ b/dist/collapse-item/animate.js
@@ -0,0 +1,71 @@
+import { canIUseAnimate } from '../common/version';
+import { getRect } from '../common/utils';
+function useAnimate(context, expanded, mounted, height) {
+ const selector = '.van-collapse-item__wrapper';
+ if (expanded) {
+ context.animate(
+ selector,
+ [
+ { height: 0, ease: 'ease-in-out', offset: 0 },
+ { height: `${height}px`, ease: 'ease-in-out', offset: 1 },
+ { height: `auto`, ease: 'ease-in-out', offset: 1 },
+ ],
+ mounted ? 300 : 0,
+ () => {
+ context.clearAnimation(selector);
+ }
+ );
+ return;
+ }
+ context.animate(
+ selector,
+ [
+ { height: `${height}px`, ease: 'ease-in-out', offset: 0 },
+ { height: 0, ease: 'ease-in-out', offset: 1 },
+ ],
+ 300,
+ () => {
+ context.clearAnimation(selector);
+ }
+ );
+}
+function useAnimation(context, expanded, mounted, height) {
+ const animation = wx.createAnimation({
+ duration: 0,
+ timingFunction: 'ease-in-out',
+ });
+ if (expanded) {
+ if (height === 0) {
+ animation.height('auto').top(1).step();
+ } else {
+ animation
+ .height(height)
+ .top(1)
+ .step({
+ duration: mounted ? 300 : 1,
+ })
+ .height('auto')
+ .step();
+ }
+ context.setData({
+ animation: animation.export(),
+ });
+ return;
+ }
+ animation.height(height).top(0).step({ duration: 1 }).height(0).step({
+ duration: 300,
+ });
+ context.setData({
+ animation: animation.export(),
+ });
+}
+export function setContentAnimate(context, expanded, mounted) {
+ getRect
+ .call(context, '.van-collapse-item__content')
+ .then((rect) => rect.height)
+ .then((height) => {
+ canIUseAnimate()
+ ? useAnimate(context, expanded, mounted, height)
+ : useAnimation(context, expanded, mounted, height);
+ });
+}
diff --git a/dist/collapse-item/index.js b/dist/collapse-item/index.js
index aec309e5..50ddb5e3 100644
--- a/dist/collapse-item/index.js
+++ b/dist/collapse-item/index.js
@@ -1,4 +1,5 @@
import { VantComponent } from '../common/component';
+import { setContentAnimate } from './animate';
VantComponent({
classes: ['title-class', 'content-class'],
relation: {
@@ -26,20 +27,14 @@ VantComponent({
data: {
expanded: false,
},
- created() {
- this.animation = wx.createAnimation({
- duration: 0,
- timingFunction: 'ease-in-out',
- });
- },
mounted() {
this.updateExpanded();
- this.inited = true;
+ this.mounted = true;
},
methods: {
updateExpanded() {
if (!this.parent) {
- return Promise.resolve();
+ return;
}
const { value, accordion } = this.parent.data;
const { children = [] } = this.parent;
@@ -50,42 +45,10 @@ VantComponent({
? value === currentName
: (value || []).some((name) => name === currentName);
if (expanded !== this.data.expanded) {
- this.updateStyle(expanded);
+ setContentAnimate(this, expanded, this.mounted);
}
this.setData({ index, expanded });
},
- updateStyle(expanded) {
- const { inited } = this;
- this.getRect('.van-collapse-item__content')
- .then((rect) => rect.height)
- .then((height) => {
- const { animation } = this;
- if (expanded) {
- if (height === 0) {
- animation.height('auto').top(1).step();
- } else {
- animation
- .height(height)
- .top(1)
- .step({
- duration: inited ? 300 : 1,
- })
- .height('auto')
- .step();
- }
- this.setData({
- animation: animation.export(),
- });
- return;
- }
- animation.height(height).top(0).step({ duration: 1 }).height(0).step({
- duration: 300,
- });
- this.setData({
- animation: animation.export(),
- });
- });
- },
onClick() {
if (this.data.disabled) {
return;
diff --git a/dist/common/utils.d.ts b/dist/common/utils.d.ts
index 2454e2b8..c0947476 100644
--- a/dist/common/utils.d.ts
+++ b/dist/common/utils.d.ts
@@ -17,3 +17,6 @@ export declare function getAllRect(
this: WechatMiniprogram.Component.TrivialInstance,
selector: string
): Promise;
+export declare function toPromise(
+ promiseLike: Promise | unknown
+): Promise;
diff --git a/dist/common/utils.js b/dist/common/utils.js
index 5d93882c..24b55413 100644
--- a/dist/common/utils.js
+++ b/dist/common/utils.js
@@ -1,4 +1,4 @@
-import { isNumber, isPlainObject } from './validator';
+import { isNumber, isPlainObject, isPromise } from './validator';
export function isDef(value) {
return value !== undefined && value !== null;
}
@@ -70,3 +70,9 @@ export function getAllRect(selector) {
.exec((rect = []) => resolve(rect[0]));
});
}
+export function toPromise(promiseLike) {
+ if (isPromise(promiseLike)) {
+ return promiseLike;
+ }
+ return Promise.resolve(promiseLike);
+}
diff --git a/dist/common/version.d.ts b/dist/common/version.d.ts
index d4c6fe24..4af01327 100644
--- a/dist/common/version.d.ts
+++ b/dist/common/version.d.ts
@@ -1,2 +1,3 @@
export declare function canIUseModel(): boolean;
export declare function canIUseFormFieldButton(): boolean;
+export declare function canIUseAnimate(): boolean;
diff --git a/dist/common/version.js b/dist/common/version.js
index 01f24f88..1e0a0723 100644
--- a/dist/common/version.js
+++ b/dist/common/version.js
@@ -29,3 +29,7 @@ export function canIUseFormFieldButton() {
const system = getSystemInfoSync();
return compareVersion(system.SDKVersion, '2.10.3') >= 0;
}
+export function canIUseAnimate() {
+ const system = getSystemInfoSync();
+ return compareVersion(system.SDKVersion, '2.9.0') >= 0;
+}
diff --git a/dist/dialog/dialog.d.ts b/dist/dialog/dialog.d.ts
index 109a15cb..ee7f4559 100644
--- a/dist/dialog/dialog.d.ts
+++ b/dist/dialog/dialog.d.ts
@@ -1,4 +1,5 @@
///
+export declare type Action = 'confirm' | 'cancel' | 'overlay';
interface DialogOptions {
lang?: string;
show?: boolean;
@@ -16,7 +17,11 @@ interface DialogOptions {
className?: string;
customStyle?: string;
transition?: string;
+ /**
+ * @deprecated use beforeClose instead
+ */
asyncClose?: boolean;
+ beforeClose?: null | (() => Promise | void);
businessId?: number;
sessionFrom?: string;
overlayStyle?: string;
diff --git a/dist/dialog/dialog.js b/dist/dialog/dialog.js
index 94f1d3db..542c07b0 100644
--- a/dist/dialog/dialog.js
+++ b/dist/dialog/dialog.js
@@ -10,6 +10,7 @@ const defaultOptions = {
selector: '#van-dialog',
className: '',
asyncClose: false,
+ beforeClose: null,
transition: 'scale',
customStyle: '',
messageAlign: '',
@@ -35,7 +36,14 @@ const Dialog = (options) => {
delete options.selector;
if (dialog) {
dialog.setData(
- Object.assign({ onCancel: reject, onConfirm: resolve }, options)
+ Object.assign(
+ {
+ callback: (action, instance) => {
+ action === 'confirm' ? resolve(instance) : reject(instance);
+ },
+ },
+ options
+ )
);
wx.nextTick(() => {
dialog.setData({ show: true });
diff --git a/dist/dialog/index.js b/dist/dialog/index.js
index 5aa7f8f4..f2e4f386 100644
--- a/dist/dialog/index.js
+++ b/dist/dialog/index.js
@@ -2,6 +2,7 @@ import { VantComponent } from '../common/component';
import { button } from '../mixins/button';
import { openType } from '../mixins/open-type';
import { GRAY, RED } from '../common/color';
+import { toPromise } from '../common/utils';
VantComponent({
mixins: [button, openType],
props: {
@@ -22,6 +23,7 @@ VantComponent({
customStyle: String,
asyncClose: Boolean,
messageAlign: String,
+ beforeClose: null,
overlayStyle: String,
useTitleSlot: Boolean,
showCancelButton: Boolean,
@@ -77,17 +79,14 @@ VantComponent({
onClickOverlay() {
this.onClose('overlay');
},
- handleAction(action) {
- if (this.data.asyncClose) {
- this.setData({
- [`loading.${action}`]: true,
- });
- }
- this.onClose(action);
- },
- close() {
- this.setData({
- show: false,
+ close(action) {
+ this.setData({ show: false });
+ wx.nextTick(() => {
+ this.$emit('close', action);
+ const { callback } = this.data;
+ if (callback) {
+ callback(action, this);
+ }
});
},
stopLoading() {
@@ -98,18 +97,24 @@ VantComponent({
},
});
},
- onClose(action) {
- if (!this.data.asyncClose) {
- this.close();
- }
- this.$emit('close', action);
- // 把 dialog 实例传递出去,可以通过 stopLoading() 在外部关闭按钮的 loading
+ handleAction(action) {
this.$emit(action, { dialog: this });
- const callback = this.data[
- action === 'confirm' ? 'onConfirm' : 'onCancel'
- ];
- if (callback) {
- callback(this);
+ const { asyncClose, beforeClose } = this.data;
+ if (!asyncClose && !beforeClose) {
+ this.close(action);
+ return;
+ }
+ this.setData({
+ [`loading.${action}`]: true,
+ });
+ if (beforeClose) {
+ toPromise(beforeClose(action)).then((value) => {
+ if (value) {
+ this.close(action);
+ } else {
+ this.stopLoading();
+ }
+ });
}
},
},
diff --git a/dist/dialog/index.json b/dist/dialog/index.json
index 1b87cc89..43417fc8 100644
--- a/dist/dialog/index.json
+++ b/dist/dialog/index.json
@@ -3,7 +3,7 @@
"usingComponents": {
"van-popup": "../popup/index",
"van-button": "../button/index",
- "van-goods-action": "../goods-action//index",
+ "van-goods-action": "../goods-action/index",
"van-goods-action-button": "../goods-action-button/index"
}
}
diff --git a/dist/dropdown-menu/index.js b/dist/dropdown-menu/index.js
index bd786530..6a1d7674 100644
--- a/dist/dropdown-menu/index.js
+++ b/dist/dropdown-menu/index.js
@@ -1,5 +1,5 @@
import { VantComponent } from '../common/component';
-import { addUnit } from '../common/utils';
+import { addUnit, getRect } from '../common/utils';
let ARRAY = [];
VantComponent({
field: true,
@@ -87,7 +87,7 @@ VantComponent({
},
getChildWrapperStyle() {
const { zIndex, direction } = this.data;
- return this.getRect('.van-dropdown-menu').then((rect) => {
+ return getRect.call(this, '.van-dropdown-menu').then((rect) => {
const { top = 0, bottom = 0 } = rect;
const offset = direction === 'down' ? bottom : this.windowHeight - top;
let wrapperStyle = `z-index: ${zIndex};`;
diff --git a/dist/field/index.wxml b/dist/field/index.wxml
index 42bd26b1..6254e676 100644
--- a/dist/field/index.wxml
+++ b/dist/field/index.wxml
@@ -99,7 +99,7 @@
- {{ value.length }}/{{ maxlength }}
+ {{ value.length >= maxlength ? maxlength : value.length }}/{{ maxlength }}
{{ errorMessage }}
diff --git a/dist/index-anchor/index.js b/dist/index-anchor/index.js
index d76d2740..3e2eeede 100644
--- a/dist/index-anchor/index.js
+++ b/dist/index-anchor/index.js
@@ -1,3 +1,4 @@
+import { getRect } from '../common/utils';
import { VantComponent } from '../common/component';
VantComponent({
relation: {
@@ -16,15 +17,12 @@ VantComponent({
},
methods: {
scrollIntoView(scrollTop) {
- this.getBoundingClientRect().then((rect) => {
+ getRect.call(this, '.van-index-anchor-wrapper').then((rect) => {
wx.pageScrollTo({
duration: 0,
scrollTop: scrollTop + rect.top - this.parent.data.stickyOffsetTop,
});
});
},
- getBoundingClientRect() {
- return this.getRect('.van-index-anchor-wrapper');
- },
},
});
diff --git a/dist/info/index.wxml b/dist/info/index.wxml
index 3112dfc9..b39b5245 100644
--- a/dist/info/index.wxml
+++ b/dist/info/index.wxml
@@ -2,6 +2,6 @@
{{ dot ? '' : info }}
diff --git a/dist/info/index.wxss b/dist/info/index.wxss
index 2994df84..953136a5 100644
--- a/dist/info/index.wxss
+++ b/dist/info/index.wxss
@@ -1 +1 @@
-@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;white-space:nowrap;text-align:center;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;height:16px;height:var(--info-size,16px);min-width:16px;min-width:var(--info-size,16px);padding:0 3px;padding:var(--info-padding,0 3px);color:#fff;color:var(--info-color,#fff);font-weight:500;font-weight:var(--info-font-weight,500);font-size:12px;font-size:var(--info-font-size,12px);font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);background-color:#ee0a24;background-color:var(--info-background-color,#ee0a24);border:1px solid #fff;border:var(--info-border-width,1px) solid var(--white,#fff);border-radius:16px;border-radius:var(--info-size,16px)}.van-info--dot{min-width:0;border-radius:100%;width:8px;width:var(--info-dot-size,8px);height:8px;height:var(--info-dot-size,8px);background-color:#ee0a24;background-color:var(--info-dot-color,#ee0a24)}
\ No newline at end of file
+@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;white-space:nowrap;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;height:16px;height:var(--info-size,16px);min-width:16px;min-width:var(--info-size,16px);padding:0 3px;padding:var(--info-padding,0 3px);color:#fff;color:var(--info-color,#fff);font-weight:500;font-weight:var(--info-font-weight,500);font-size:12px;font-size:var(--info-font-size,12px);font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);background-color:#ee0a24;background-color:var(--info-background-color,#ee0a24);border:1px solid #fff;border:var(--info-border-width,1px) solid var(--white,#fff);border-radius:16px;border-radius:var(--info-size,16px)}.van-info--dot{min-width:0;border-radius:100%;width:8px;width:var(--info-dot-size,8px);height:8px;height:var(--info-dot-size,8px);background-color:#ee0a24;background-color:var(--info-dot-color,#ee0a24)}
\ No newline at end of file
diff --git a/dist/mixins/basic.js b/dist/mixins/basic.js
index f57ad138..91659a29 100644
--- a/dist/mixins/basic.js
+++ b/dist/mixins/basic.js
@@ -7,21 +7,5 @@ export const basic = Behavior({
this.setData(data, callback);
return new Promise((resolve) => wx.nextTick(resolve));
},
- getRect(selector, all) {
- return new Promise((resolve) => {
- wx.createSelectorQuery()
- .in(this)
- [all ? 'selectAll' : 'select'](selector)
- .boundingClientRect((rect) => {
- if (all && Array.isArray(rect) && rect.length) {
- resolve(rect);
- }
- if (!all && rect) {
- resolve(rect);
- }
- })
- .exec();
- });
- },
},
});
diff --git a/dist/mixins/link.js b/dist/mixins/link.js
index f215742e..4612e340 100644
--- a/dist/mixins/link.js
+++ b/dist/mixins/link.js
@@ -10,7 +10,14 @@ export const link = Behavior({
jumpLink(urlKey = 'url') {
const url = this.data[urlKey];
if (url) {
- wx[this.data.linkType]({ url });
+ if (
+ this.data.linkType === 'navigateTo' &&
+ getCurrentPages().length > 9
+ ) {
+ wx.redirectTo({ url });
+ } else {
+ wx[this.data.linkType]({ url });
+ }
}
},
},
diff --git a/dist/nav-bar/index.js b/dist/nav-bar/index.js
index 6541e3a7..11799985 100644
--- a/dist/nav-bar/index.js
+++ b/dist/nav-bar/index.js
@@ -55,7 +55,9 @@ VantComponent({
}
wx.nextTick(() => {
getRect.call(this, '.van-nav-bar').then((res) => {
- this.setData({ height: res.height });
+ if (res && 'height' in res) {
+ this.setData({ height: res.height });
+ }
});
});
},
diff --git a/dist/nav-bar/index.wxs b/dist/nav-bar/index.wxs
index 64828328..55b4158d 100644
--- a/dist/nav-bar/index.wxs
+++ b/dist/nav-bar/index.wxs
@@ -1,15 +1,11 @@
/* eslint-disable */
-function barStyle(data) {
- var styles = [
- ['z-index', data.zIndex],
- ['padding-top', data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0],
- ];
+var style = require('../wxs/style.wxs');
- return styles
- .map(function (item) {
- return item.join(':');
- })
- .join(';');
+function barStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
+ });
}
module.exports = {
diff --git a/dist/popup/index.wxml b/dist/popup/index.wxml
index 9b41e5c3..f3fd7cfa 100644
--- a/dist/popup/index.wxml
+++ b/dist/popup/index.wxml
@@ -1,4 +1,5 @@
+