[build] 0.5.11

This commit is contained in:
rex-zsd 2019-04-24 10:05:04 +08:00
parent 6ca34c3158
commit bbde603217
55 changed files with 404 additions and 337 deletions

31
dist/area/index.js vendored
View File

@ -1,29 +1,14 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { pickerProps } from '../picker/shared';
VantComponent({ VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: { props: Object.assign({}, pickerProps, { value: String, areaList: {
title: String,
value: String,
loading: Boolean,
cancelButtonText: String,
confirmButtonText: String,
itemHeight: {
type: Number,
value: 44
},
visibleItemCount: {
type: Number,
value: 5
},
columnsNum: {
type: [String, Number],
value: 3
},
areaList: {
type: Object, type: Object,
value: {} value: {}
} }, columnsNum: {
}, type: [String, Number],
value: 3
} }),
data: { data: {
columns: [{ values: [] }, { values: [] }, { values: [] }], columns: [{ values: [] }, { values: [] }, { values: [] }],
displayColumns: [{ values: [] }, { values: [] }, { values: [] }] displayColumns: [{ values: [] }, { values: [] }, { values: [] }]
@ -40,6 +25,9 @@ VantComponent({
}); });
} }
}, },
mounted() {
this.setValues();
},
methods: { methods: {
getPicker() { getPicker() {
if (this.picker == null) { if (this.picker == null) {
@ -120,7 +108,6 @@ VantComponent({
stack.push(picker.setColumnValues(0, province, false)); stack.push(picker.setColumnValues(0, province, false));
stack.push(picker.setColumnValues(1, city, false)); stack.push(picker.setColumnValues(1, city, false));
if (city.length && code.slice(2, 4) === '00') { if (city.length && code.slice(2, 4) === '00') {
;
[{ code }] = city; [{ code }] = city;
} }
stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false)); stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false));

View File

@ -1,49 +1,43 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { isNumber } from '../common/utils';
VantComponent({ VantComponent({
relation: { relation: {
name: 'badge', name: 'badge',
type: 'descendant', type: 'descendant',
linked(target) { linked(target) {
this.badges.push(target); this.badges.push(target);
this.setActive(); this.setActive(this.data.active);
}, },
unlinked(target) { unlinked(target) {
this.badges = this.badges.filter(item => item !== target); this.badges = this.badges.filter(item => item !== target);
this.setActive(); this.setActive(this.data.active);
} }
}, },
props: { props: {
active: { active: {
type: Number, type: Number,
value: 0 value: 0,
observer: 'setActive'
} }
}, },
watch: {
active: 'setActive'
},
beforeCreate() { beforeCreate() {
this.badges = []; this.badges = [];
this.currentActive = -1; this.currentActive = -1;
}, },
methods: { methods: {
setActive(badge) { setActive(active) {
let { active } = this.data; const { badges, currentActive } = this;
const { badges } = this; if (!badges.length) {
if (badge && !isNumber(badge)) { return Promise.resolve();
active = badges.indexOf(badge);
} }
if (active === this.currentActive) { this.currentActive = active;
return; const stack = [];
} if (currentActive !== active && badges[currentActive]) {
if (this.currentActive !== -1 && badges[this.currentActive]) { stack.push(badges[currentActive].setActive(false));
this.$emit('change', active);
badges[this.currentActive].setActive(false);
} }
if (badges[active]) { if (badges[active]) {
badges[active].setActive(true); stack.push(badges[active].setActive(true));
this.currentActive = active;
} }
return Promise.all(stack);
} }
} }
}); });

18
dist/badge/index.js vendored
View File

@ -2,7 +2,10 @@ import { VantComponent } from '../common/component';
VantComponent({ VantComponent({
relation: { relation: {
type: 'ancestor', type: 'ancestor',
name: 'badge-group' name: 'badge-group',
linked(target) {
this.parent = target;
}
}, },
props: { props: {
info: null, info: null,
@ -10,13 +13,18 @@ VantComponent({
}, },
methods: { methods: {
onClick() { onClick() {
const group = this.getRelationNodes('../badge-group/index')[0]; const { parent } = this;
if (group) { if (!parent) {
group.setActive(this); return;
} }
const index = parent.badges.indexOf(this);
parent.setActive(index).then(() => {
this.$emit('click', index);
parent.$emit('change', index);
});
}, },
setActive(active) { setActive(active) {
this.set({ active }); return this.set({ active });
} }
} }
}); });

1
dist/cell/index.js vendored
View File

@ -22,6 +22,7 @@ VantComponent({
titleWidth: String, titleWidth: String,
customStyle: String, customStyle: String,
arrowDirection: String, arrowDirection: String,
useLabelSlot: Boolean,
border: { border: {
type: Boolean, type: Boolean,
value: true value: true

10
dist/cell/index.wxml vendored
View File

@ -19,11 +19,13 @@
style="{{ titleWidth ? 'max-width:' + titleWidth + ';min-width:' + titleWidth : '' }}" style="{{ titleWidth ? 'max-width:' + titleWidth + ';min-width:' + titleWidth : '' }}"
class="van-cell__title title-class" class="van-cell__title title-class"
> >
<block wx:if="{{ title }}"> <block wx:if="{{ title }}">{{ title }}</block>
{{ title }}
<view wx:if="{{ label }}" class="van-cell__label label-class">{{ label }}</view>
</block>
<slot wx:else name="title" /> <slot wx:else name="title" />
<view wx:if="{{ label || useLabelSlot }}" class="van-cell__label label-class">
<slot wx:if="{{ useLabelSlot }}" name="label" />
<block wx:elif="{{ label }}">{{ label }}</block>
</view>
</view> </view>
<view class="van-cell__value value-class"> <view class="van-cell__value value-class">

View File

@ -16,6 +16,7 @@ VantComponent({
icon: String, icon: String,
label: String, label: String,
disabled: Boolean, disabled: Boolean,
clickable: Boolean,
border: { border: {
type: Boolean, type: Boolean,
value: true value: true

View File

@ -5,9 +5,10 @@
title="{{ title }}" title="{{ title }}"
title-class="title-class" title-class="title-class"
icon="{{ icon }}" icon="{{ icon }}"
is-link="{{ isLink }}"
value="{{ value }}" value="{{ value }}"
label="{{ label }}" label="{{ label }}"
is-link="{{ isLink }}"
clickable="{{ clickable }}"
border="{{ border && expanded }}" border="{{ border && expanded }}"
class="{{ utils.bem('collapse-item__title', { disabled, expanded }) }}" class="{{ utils.bem('collapse-item__title', { disabled, expanded }) }}"
right-icon-class="van-cell__right-icon" right-icon-class="van-cell__right-icon"

View File

@ -5,6 +5,9 @@ VantComponent({
type: 'descendant', type: 'descendant',
linked(child) { linked(child) {
this.children.push(child); this.children.push(child);
},
unlinked(child) {
this.children = this.children.filter((item) => item !== child);
} }
}, },
props: { props: {

View File

@ -1,5 +1,6 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { isDef } from '../common/utils'; import { isDef } from '../common/utils';
import { pickerProps } from '../picker/shared';
const currentYear = new Date().getFullYear(); const currentYear = new Date().getFullYear();
function isValidDate(date) { function isValidDate(date) {
return isDef(date) && !isNaN(new Date(date).getTime()); return isDef(date) && !isNaN(new Date(date).getTime());
@ -29,60 +30,37 @@ function getTrueValue(formattedValue) {
function getMonthEndDay(year, month) { function getMonthEndDay(year, month) {
return 32 - new Date(year, month - 1, 32).getDate(); return 32 - new Date(year, month - 1, 32).getDate();
} }
const defaultFormatter = (_, value) => value;
VantComponent({ VantComponent({
props: { classes: ['active-class', 'toolbar-class', 'column-class'],
value: null, props: Object.assign({}, pickerProps, { formatter: {
title: String, type: Function,
loading: Boolean, value: defaultFormatter
itemHeight: { }, value: null, type: {
type: Number,
value: 44
},
visibleItemCount: {
type: Number,
value: 5
},
confirmButtonText: {
type: String,
value: '确认'
},
cancelButtonText: {
type: String,
value: '取消'
},
type: {
type: String, type: String,
value: 'datetime' value: 'datetime'
}, }, showToolbar: {
showToolbar: {
type: Boolean, type: Boolean,
value: true value: true
}, }, minDate: {
minDate: {
type: Number, type: Number,
value: new Date(currentYear - 10, 0, 1).getTime() value: new Date(currentYear - 10, 0, 1).getTime()
}, }, maxDate: {
maxDate: {
type: Number, type: Number,
value: new Date(currentYear + 10, 11, 31).getTime() value: new Date(currentYear + 10, 11, 31).getTime()
}, }, minHour: {
minHour: {
type: Number, type: Number,
value: 0 value: 0
}, }, maxHour: {
maxHour: {
type: Number, type: Number,
value: 23 value: 23
}, }, minMinute: {
minMinute: {
type: Number, type: Number,
value: 0 value: 0
}, }, maxMinute: {
maxMinute: {
type: Number, type: Number,
value: 59 value: 59
} } }),
},
data: { data: {
innerValue: Date.now(), innerValue: Date.now(),
columns: [] columns: []
@ -107,18 +85,19 @@ VantComponent({
methods: { methods: {
getPicker() { getPicker() {
if (this.picker == null) { if (this.picker == null) {
const picker = this.picker = this.selectComponent('.van-datetime-picker'); const picker = (this.picker = this.selectComponent('.van-datetime-picker'));
const { setColumnValues } = picker; const { setColumnValues } = picker;
picker.setColumnValues = (...args) => setColumnValues.apply(picker, [...args, false]); picker.setColumnValues = (...args) => setColumnValues.apply(picker, [...args, false]);
} }
return this.picker; return this.picker;
}, },
updateColumns() { updateColumns() {
const { formatter = defaultFormatter } = this.data;
const results = this.getRanges().map(({ type, range }, index) => { const results = this.getRanges().map(({ type, range }, index) => {
const values = times(range[1] - range[0] + 1, index => { const values = times(range[1] - range[0] + 1, index => {
let value = range[0] + index; let value = range[0] + index;
value = type === 'year' ? `${value}` : padZero(value); value = type === 'year' ? `${value}` : padZero(value);
return value; return formatter(type, value);
}); });
return { values }; return { values };
}); });
@ -265,20 +244,26 @@ VantComponent({
}, },
updateColumnValue(value) { updateColumnValue(value) {
let values = []; let values = [];
const { data } = this; const { type, formatter = defaultFormatter } = this.data;
const picker = this.getPicker(); const picker = this.getPicker();
if (data.type === 'time') { if (type === 'time') {
const pair = value.split(':'); const pair = value.split(':');
values = [pair[0], pair[1]]; values = [
formatter('hour', pair[0]),
formatter('minute', pair[1])
];
} }
else { else {
const date = new Date(value); const date = new Date(value);
values = [`${date.getFullYear()}`, padZero(date.getMonth() + 1)]; values = [
if (data.type === 'date') { formatter('year', `${date.getFullYear()}`),
values.push(padZero(date.getDate())); formatter('month', padZero(date.getMonth() + 1))
];
if (type === 'date') {
values.push(formatter('day', padZero(date.getDate())));
} }
if (data.type === 'datetime') { if (type === 'datetime') {
values.push(padZero(date.getDate()), padZero(date.getHours()), padZero(date.getMinutes())); values.push(formatter('day', padZero(date.getDate())), formatter('hour', padZero(date.getHours())), formatter('minute', padZero(date.getMinutes())));
} }
} }
return this.set({ innerValue: value }) return this.set({ innerValue: value })

View File

@ -1,5 +1,8 @@
<van-picker <van-picker
class="van-datetime-picker" class="van-datetime-picker"
active-class="active-class"
toolbar-class="toolbar-class"
column-class="column-class"
title="{{ title }}" title="{{ title }}"
columns="{{ columns }}" columns="{{ columns }}"
item-height="{{ itemHeight }}" item-height="{{ itemHeight }}"

5
dist/field/index.js vendored
View File

@ -1,7 +1,7 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
VantComponent({ VantComponent({
field: true, field: true,
classes: ['input-class'], classes: ['input-class', 'right-icon-class'],
props: { props: {
size: String, size: String,
icon: String, icon: String,
@ -12,6 +12,7 @@ VantComponent({
center: Boolean, center: Boolean,
isLink: Boolean, isLink: Boolean,
leftIcon: String, leftIcon: String,
rightIcon: String,
disabled: Boolean, disabled: Boolean,
autosize: Boolean, autosize: Boolean,
readonly: Boolean, readonly: Boolean,
@ -26,8 +27,6 @@ VantComponent({
errorMessage: String, errorMessage: String,
placeholder: String, placeholder: String,
customStyle: String, customStyle: String,
useIconSlot: Boolean,
useButtonSlot: Boolean,
showConfirmBar: { showConfirmBar: {
type: Boolean, type: Boolean,
value: true value: true

30
dist/field/index.wxml vendored
View File

@ -24,9 +24,6 @@
disabled="{{ disabled || readonly }}" disabled="{{ disabled || readonly }}"
maxlength="{{ maxlength }}" maxlength="{{ maxlength }}"
auto-height="{{ autosize }}" auto-height="{{ autosize }}"
placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}"
placeholder-class="{{ error ? 'van-field__input--error' : 'van-field__placeholder' }}"
cursor-spacing="{{ cursorSpacing }}" cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}" adjust-position="{{ adjustPosition }}"
show-confirm-bar="{{ showConfirmBar }}" show-confirm-bar="{{ showConfirmBar }}"
@ -34,7 +31,11 @@
bind:blur="onBlur" bind:blur="onBlur"
bind:focus="onFocus" bind:focus="onFocus"
bind:confirm="onConfirm" bind:confirm="onConfirm"
/> >
<view wx:if="{{ value == null || value.length === 0 }}" style="{{ placeholderStyle }}" class="{{ utils.bem('field__placeholder', { error }) }}">
{{ placeholder }}
</view>
</textarea>
<input <input
wx:else wx:else
class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}" class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}"
@ -45,7 +46,7 @@
maxlength="{{ maxlength }}" maxlength="{{ maxlength }}"
placeholder="{{ placeholder }}" placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}" placeholder-style="{{ placeholderStyle }}"
placeholder-class="{{ error ? 'van-field__input--error' : 'van-field__placeholder' }}" placeholder-class="{{ error ? 'van-field__placeholder--error' : 'van-field__placeholder' }}"
confirm-type="{{ confirmType }}" confirm-type="{{ confirmType }}"
confirm-hold="{{ confirmHold }}" confirm-hold="{{ confirmHold }}"
cursor-spacing="{{ cursorSpacing }}" cursor-spacing="{{ cursorSpacing }}"
@ -59,20 +60,21 @@
wx:if="{{ showClear }}" wx:if="{{ showClear }}"
size="16px" size="16px"
name="clear" name="clear"
class="van-field__clear-root" class="van-field__clear-root van-field__icon-root"
custom-class="van-field__clear" bindtouchstart="onClear"
bind:touchstart="onClear"
/> />
<view class="van-field__icon-container" wx:if="{{ icon || useIconSlot }}" bind:tap="onClickIcon"> <view class="van-field__icon-container" bind:tap="onClickIcon">
<van-icon <van-icon
wx:if="{{ icon }}" wx:if="{{ rightIcon || icon }}"
size="16px" size="16px"
name="{{ icon }}" name="{{ rightIcon || icon }}"
custom-class="van-field__icon {{ iconClass }}" class="van-field__icon-root {{ iconClass }}"
custom-class="right-icon-class"
/> />
<slot wx:else name="icon" /> <slot name="right-icon" />
<slot name="icon" />
</view> </view>
<view wx:if="{{ useButtonSlot }}" class="van-field__button"> <view class="van-field__button">
<slot name="button" /> <slot name="button" />
</view> </view>
</view> </view>

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{min-height:24px}.van-field__input{display:block;width:100%;height:24px;min-height:24px;padding:0;margin:0;line-height:inherit;color:#333;text-align:left;background-color:initial;border:0;box-sizing:border-box;resize:none}.van-field__input--disabled{color:#999;background-color:initial;opacity:1}.van-field__input--center{text-align:center}.van-field__input--right{text-align:right}.van-field__input--error{color:#f44}.van-field__placeholder{color:#999}.van-field__clear-root{display:-webkit-flex;display:flex;height:24px;-webkit-align-items:center;align-items:center}.van-field__button,.van-field__clear,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear,.van-field__icon-container{padding:0 10px;margin-right:-10px;line-height:inherit;vertical-align:middle}.van-field__clear{color:#c9c9c9}.van-field__icon-container{color:#999}.van-field__icon{display:block!important}.van-field__button{padding-left:10px}.van-field__error-message{font-size:12px;color:#f44;text-align:left}.van-field__error--center{text-align:center}.van-field__error--right{text-align:right} @import '../common/index.wxss';.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{min-height:24px}.van-field__input{position:relative;display:block;width:100%;height:24px;min-height:24px;padding:0;margin:0;line-height:inherit;color:#333;text-align:left;background-color:initial;border:0;box-sizing:border-box;resize:none}.van-field__input--disabled{color:#999;background-color:initial;opacity:1}.van-field__input--center{text-align:center}.van-field__input--right{text-align:right}.van-field__placeholder{position:absolute;top:0;left:0;color:#999;pointer-events:none}.van-field__placeholder--error{color:#f44}.van-field__icon-root{display:-webkit-flex;display:flex;min-height:24px;-webkit-align-items:center;align-items:center}.van-field__clear-root,.van-field__icon-container{padding:0 10px;margin-right:-10px;line-height:inherit;vertical-align:middle}.van-field__button,.van-field__clear-root,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear-root{color:#c9c9c9}.van-field__icon-container{color:#999}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:10px}.van-field__button:empty{display:none}.van-field__error-message{font-size:12px;color:#f44;text-align:left}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}

File diff suppressed because one or more lines are too long

View File

@ -16,6 +16,10 @@ VantComponent({
duration: { duration: {
type: Number, type: Number,
value: 3000 value: 3000
},
zIndex: {
type: Number,
value: 110
} }
}, },
methods: { methods: {

View File

@ -2,7 +2,7 @@
name="slide-down" name="slide-down"
show="{{ show }}" show="{{ show }}"
custom-class="van-notify" custom-class="van-notify"
custom-style="background-color:{{ backgroundColor }}; color: {{ color }};" custom-style="background-color:{{ backgroundColor }}; color: {{ color }}; z-index: {{ zIndex }};"
> >
<view wx:if="{{ safeAreaInsetTop }}" class="van-notify__safe-top" style="padding-top: {{ statusBarHeight }}px"></view> <view wx:if="{{ safeAreaInsetTop }}" class="van-notify__safe-top" style="padding-top: {{ statusBarHeight }}px"></view>
{{ text }} {{ text }}

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-notify{position:fixed;top:0;z-index:110;width:100%;padding:6px 15px;font-size:14px;line-height:20px;text-align:center;word-break:break-all;box-sizing:border-box}.van-notify__safe-top{height:44px} @import '../common/index.wxss';.van-notify{position:fixed;top:0;width:100%;padding:6px 15px;font-size:14px;line-height:20px;text-align:center;word-break:break-all;box-sizing:border-box}.van-notify__safe-top{height:44px}

View File

@ -1,4 +1,4 @@
declare type NotifyOptions = { interface NotifyOptions {
text: string; text: string;
color?: string; color?: string;
backgroundColor?: string; backgroundColor?: string;
@ -6,6 +6,7 @@ declare type NotifyOptions = {
selector?: string; selector?: string;
context?: any; context?: any;
safeAreaInsetTop?: boolean; safeAreaInsetTop?: boolean;
}; zIndex?: number;
}
export default function Notify(options: NotifyOptions | string): void; export default function Notify(options: NotifyOptions | string): void;
export {}; export {};

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-picker-column{overflow:hidden;font-size:16px;text-align:center}.van-picker-column__item{padding:0 5px;color:#999}.van-picker-column__item--selected{font-weight:500;color:#333}.van-picker-column__item--disabled{opacity:.3} @import '../common/index.wxss';.van-picker-column{overflow:hidden;font-size:16px;color:#999;text-align:center}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{font-weight:500;color:#333}.van-picker-column__item--disabled{opacity:.3}

29
dist/picker/index.js vendored
View File

@ -1,39 +1,24 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
function isSimple(columns) { import { pickerProps } from './shared';
return columns.length && !columns[0].values;
}
VantComponent({ VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: { props: Object.assign({}, pickerProps, { valueKey: {
title: String,
loading: Boolean,
showToolbar: Boolean,
confirmButtonText: String,
cancelButtonText: String,
visibleItemCount: {
type: Number,
value: 5
},
valueKey: {
type: String, type: String,
value: 'text' value: 'text'
}, }, defaultIndex: {
itemHeight: {
type: Number, type: Number,
value: 44 value: 0
}, }, columns: {
columns: {
type: Array, type: Array,
value: [], value: [],
observer(columns = []) { observer(columns = []) {
this.simple = isSimple(columns); this.simple = columns.length && !columns[0].values;
this.children = this.selectAllComponents('.van-picker__column'); this.children = this.selectAllComponents('.van-picker__column');
if (Array.isArray(this.children) && this.children.length) { if (Array.isArray(this.children) && this.children.length) {
this.setColumns().catch(() => { }); this.setColumns().catch(() => { });
} }
} }
} } }),
},
beforeCreate() { beforeCreate() {
this.children = []; this.children = [];
}, },

View File

@ -10,7 +10,7 @@
data-type="cancel" data-type="cancel"
bindtap="emit" bindtap="emit"
> >
{{ cancelButtonText || '取消' }} {{ cancelButtonText }}
</view> </view>
<view wx:if="{{ title }}" class="van-picker__title van-ellipsis">{{ title }}</view> <view wx:if="{{ title }}" class="van-picker__title van-ellipsis">{{ title }}</view>
<view <view
@ -20,7 +20,7 @@
data-type="confirm" data-type="confirm"
bindtap="emit" bindtap="emit"
> >
{{ confirmButtonText || '确认' }} {{ confirmButtonText }}
</view> </view>
</view> </view>
<view wx:if="{{ loading }}" class="van-picker__loading"> <view wx:if="{{ loading }}" class="van-picker__loading">
@ -39,7 +39,7 @@
custom-class="column-class" custom-class="column-class"
value-key="{{ valueKey }}" value-key="{{ valueKey }}"
initial-options="{{ isSimple(columns) ? item : item.values }}" initial-options="{{ isSimple(columns) ? item : item.values }}"
default-index="{{ item.defaultIndex }}" default-index="{{ item.defaultIndex || defaultIndex }}"
item-height="{{ itemHeight }}" item-height="{{ itemHeight }}"
visible-item-count="{{ visibleItemCount }}" visible-item-count="{{ visibleItemCount }}"
active-class="active-class" active-class="active-class"

21
dist/picker/shared.d.ts vendored Normal file
View File

@ -0,0 +1,21 @@
export declare const pickerProps: {
title: StringConstructor;
loading: BooleanConstructor;
showToolbar: BooleanConstructor;
cancelButtonText: {
type: StringConstructor;
value: string;
};
confirmButtonText: {
type: StringConstructor;
value: string;
};
visibleItemCount: {
type: NumberConstructor;
value: number;
};
itemHeight: {
type: NumberConstructor;
value: number;
};
};

21
dist/picker/shared.js vendored Normal file
View File

@ -0,0 +1,21 @@
export const pickerProps = {
title: String,
loading: Boolean,
showToolbar: Boolean,
cancelButtonText: {
type: String,
value: '取消'
},
confirmButtonText: {
type: String,
value: '确认'
},
visibleItemCount: {
type: Number,
value: 5
},
itemHeight: {
type: Number,
value: 44
}
};

View File

@ -49,13 +49,14 @@ VantComponent({
this.touchMove(event); this.touchMove(event);
this.getRect('.van-slider').then((rect) => { this.getRect('.van-slider').then((rect) => {
const diff = this.deltaX / rect.width * 100; const diff = this.deltaX / rect.width * 100;
this.updateValue(this.startValue + diff, false, true); this.newValue = this.startValue + diff;
this.updateValue(this.newValue, false, true);
}); });
}, },
onTouchEnd() { onTouchEnd() {
if (this.data.disabled) if (this.data.disabled)
return; return;
this.updateValue(this.data.value, true); this.updateValue(this.newValue, true);
}, },
onClick(event) { onClick(event) {
if (this.data.disabled) if (this.data.disabled)

View File

@ -22,6 +22,10 @@ VantComponent({
buttonType: { buttonType: {
type: String, type: String,
value: 'danger' value: 'danger'
},
decimalLength: {
type: Number,
value: 2
} }
}, },
computed: { computed: {
@ -29,7 +33,7 @@ VantComponent({
return typeof this.data.price === 'number'; return typeof this.data.price === 'number';
}, },
priceStr() { priceStr() {
return (this.data.price / 100).toFixed(2); return (this.data.price / 100).toFixed(this.data.decimalLength);
}, },
tipStr() { tipStr() {
const { tip } = this.data; const { tip } = this.data;

5
dist/toast/index.js vendored
View File

@ -23,11 +23,6 @@ VantComponent({
} }
}, },
methods: { methods: {
clear() {
this.set({
show: false
});
},
// for prevent touchmove // for prevent touchmove
noop() { } noop() { }
} }

View File

@ -27,5 +27,7 @@
<van-icon wx:else class="van-toast__icon" name="{{ type }}" /> <van-icon wx:else class="van-toast__icon" name="{{ type }}" />
<text wx:if="{{ message }}" class="van-toast__text">{{ message }}</text> <text wx:if="{{ message }}" class="van-toast__text">{{ message }}</text>
</block> </block>
<slot />
</view> </view>
</van-transition> </van-transition>

22
dist/toast/toast.d.ts vendored
View File

@ -1,5 +1,5 @@
declare type ToastMessage = string | number; declare type ToastMessage = string | number;
export declare type ToastOptions = { interface ToastOptions {
show?: boolean; show?: boolean;
type?: string; type?: string;
mask?: boolean; mask?: boolean;
@ -11,15 +11,15 @@ export declare type ToastOptions = {
forbidClick?: boolean; forbidClick?: boolean;
loadingType?: string; loadingType?: string;
message?: ToastMessage; message?: ToastMessage;
}; onClose?: () => void;
export interface Toast { }
(message: ToastOptions | ToastMessage, options?: ToastOptions): Weapp.Component; declare function Toast(toastOptions: ToastOptions | ToastMessage): Weapp.Component;
loading?(options?: ToastOptions | ToastMessage): Weapp.Component; declare namespace Toast {
success?(options?: ToastOptions | ToastMessage): Weapp.Component; var loading: (options: string | number | ToastOptions) => Weapp.Component;
fail?(options?: ToastOptions | ToastMessage): Weapp.Component; var success: (options: string | number | ToastOptions) => Weapp.Component;
clear?(): void; var fail: (options: string | number | ToastOptions) => Weapp.Component;
setDefaultOptions?(options: ToastOptions): void; var clear: () => void;
resetDefaultOptions?(): void; var setDefaultOptions: (options: ToastOptions) => void;
var resetDefaultOptions: () => void;
} }
declare const Toast: Toast;
export default Toast; export default Toast;

22
dist/toast/toast.js vendored
View File

@ -20,8 +20,8 @@ function getContext() {
const pages = getCurrentPages(); const pages = getCurrentPages();
return pages[pages.length - 1]; return pages[pages.length - 1];
} }
const Toast = (options = {}) => { function Toast(toastOptions) {
options = Object.assign({}, currentOptions, parseOptions(options)); const options = Object.assign({}, currentOptions, parseOptions(toastOptions));
const context = options.context || getContext(); const context = options.context || getContext();
const toast = context.selectComponent(options.selector); const toast = context.selectComponent(options.selector);
if (!toast) { if (!toast) {
@ -30,6 +30,12 @@ const Toast = (options = {}) => {
} }
delete options.context; delete options.context;
delete options.selector; delete options.selector;
toast.clear = () => {
toast.set({ show: false });
if (options.onClose) {
options.onClose();
}
};
queue.push(toast); queue.push(toast);
toast.set(options); toast.set(options);
clearTimeout(toast.timer); clearTimeout(toast.timer);
@ -40,18 +46,18 @@ const Toast = (options = {}) => {
}, options.duration); }, options.duration);
} }
return toast; return toast;
}; }
const createMethod = type => options => Toast(Object.assign({ type }, parseOptions(options))); const createMethod = type => (options) => Toast(Object.assign({ type }, parseOptions(options)));
['loading', 'success', 'fail'].forEach(method => { Toast.loading = createMethod('loading');
Toast[method] = createMethod(method); Toast.success = createMethod('success');
}); Toast.fail = createMethod('fail');
Toast.clear = () => { Toast.clear = () => {
queue.forEach(toast => { queue.forEach(toast => {
toast.clear(); toast.clear();
}); });
queue = []; queue = [];
}; };
Toast.setDefaultOptions = options => { Toast.setDefaultOptions = (options) => {
Object.assign(currentOptions, options); Object.assign(currentOptions, options);
}; };
Toast.resetDefaultOptions = () => { Toast.resetDefaultOptions = () => {

View File

@ -1,31 +1,27 @@
"use strict"; "use strict";
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component"); var component_1 = require("../common/component");
var shared_1 = require("../picker/shared");
component_1.VantComponent({ component_1.VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: { props: __assign({}, shared_1.pickerProps, { value: String, areaList: {
title: String,
value: String,
loading: Boolean,
cancelButtonText: String,
confirmButtonText: String,
itemHeight: {
type: Number,
value: 44
},
visibleItemCount: {
type: Number,
value: 5
},
columnsNum: {
type: [String, Number],
value: 3
},
areaList: {
type: Object, type: Object,
value: {} value: {}
} }, columnsNum: {
}, type: [String, Number],
value: 3
} }),
data: { data: {
columns: [{ values: [] }, { values: [] }, { values: [] }], columns: [{ values: [] }, { values: [] }, { values: [] }],
displayColumns: [{ values: [] }, { values: [] }, { values: [] }] displayColumns: [{ values: [] }, { values: [] }, { values: [] }]
@ -42,6 +38,9 @@ component_1.VantComponent({
}); });
} }
}, },
mounted: function () {
this.setValues();
},
methods: { methods: {
getPicker: function () { getPicker: function () {
if (this.picker == null) { if (this.picker == null) {
@ -124,7 +123,6 @@ component_1.VantComponent({
stack.push(picker.setColumnValues(0, province, false)); stack.push(picker.setColumnValues(0, province, false));
stack.push(picker.setColumnValues(1, city, false)); stack.push(picker.setColumnValues(1, city, false));
if (city.length && code.slice(2, 4) === '00') { if (city.length && code.slice(2, 4) === '00') {
;
code = city[0].code; code = city[0].code;
} }
stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false)); stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false));

View File

@ -1,51 +1,45 @@
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component"); var component_1 = require("../common/component");
var utils_1 = require("../common/utils");
component_1.VantComponent({ component_1.VantComponent({
relation: { relation: {
name: 'badge', name: 'badge',
type: 'descendant', type: 'descendant',
linked: function (target) { linked: function (target) {
this.badges.push(target); this.badges.push(target);
this.setActive(); this.setActive(this.data.active);
}, },
unlinked: function (target) { unlinked: function (target) {
this.badges = this.badges.filter(function (item) { return item !== target; }); this.badges = this.badges.filter(function (item) { return item !== target; });
this.setActive(); this.setActive(this.data.active);
} }
}, },
props: { props: {
active: { active: {
type: Number, type: Number,
value: 0 value: 0,
observer: 'setActive'
} }
}, },
watch: {
active: 'setActive'
},
beforeCreate: function () { beforeCreate: function () {
this.badges = []; this.badges = [];
this.currentActive = -1; this.currentActive = -1;
}, },
methods: { methods: {
setActive: function (badge) { setActive: function (active) {
var active = this.data.active; var _a = this, badges = _a.badges, currentActive = _a.currentActive;
var badges = this.badges; if (!badges.length) {
if (badge && !utils_1.isNumber(badge)) { return Promise.resolve();
active = badges.indexOf(badge);
} }
if (active === this.currentActive) { this.currentActive = active;
return; var stack = [];
} if (currentActive !== active && badges[currentActive]) {
if (this.currentActive !== -1 && badges[this.currentActive]) { stack.push(badges[currentActive].setActive(false));
this.$emit('change', active);
badges[this.currentActive].setActive(false);
} }
if (badges[active]) { if (badges[active]) {
badges[active].setActive(true); stack.push(badges[active].setActive(true));
this.currentActive = active;
} }
return Promise.all(stack);
} }
} }
}); });

View File

@ -4,7 +4,10 @@ var component_1 = require("../common/component");
component_1.VantComponent({ component_1.VantComponent({
relation: { relation: {
type: 'ancestor', type: 'ancestor',
name: 'badge-group' name: 'badge-group',
linked: function (target) {
this.parent = target;
}
}, },
props: { props: {
info: null, info: null,
@ -12,13 +15,19 @@ component_1.VantComponent({
}, },
methods: { methods: {
onClick: function () { onClick: function () {
var group = this.getRelationNodes('../badge-group/index')[0]; var _this = this;
if (group) { var parent = this.parent;
group.setActive(this); if (!parent) {
return;
} }
var index = parent.badges.indexOf(this);
parent.setActive(index).then(function () {
_this.$emit('click', index);
parent.$emit('change', index);
});
}, },
setActive: function (active) { setActive: function (active) {
this.set({ active: active }); return this.set({ active: active });
} }
} }
}); });

View File

@ -24,6 +24,7 @@ component_1.VantComponent({
titleWidth: String, titleWidth: String,
customStyle: String, customStyle: String,
arrowDirection: String, arrowDirection: String,
useLabelSlot: Boolean,
border: { border: {
type: Boolean, type: Boolean,
value: true value: true

View File

@ -19,11 +19,13 @@
style="{{ titleWidth ? 'max-width:' + titleWidth + ';min-width:' + titleWidth : '' }}" style="{{ titleWidth ? 'max-width:' + titleWidth + ';min-width:' + titleWidth : '' }}"
class="van-cell__title title-class" class="van-cell__title title-class"
> >
<block wx:if="{{ title }}"> <block wx:if="{{ title }}">{{ title }}</block>
{{ title }}
<view wx:if="{{ label }}" class="van-cell__label label-class">{{ label }}</view>
</block>
<slot wx:else name="title" /> <slot wx:else name="title" />
<view wx:if="{{ label || useLabelSlot }}" class="van-cell__label label-class">
<slot wx:if="{{ useLabelSlot }}" name="label" />
<block wx:elif="{{ label }}">{{ label }}</block>
</view>
</view> </view>
<view class="van-cell__value value-class"> <view class="van-cell__value value-class">

View File

@ -18,6 +18,7 @@ component_1.VantComponent({
icon: String, icon: String,
label: String, label: String,
disabled: Boolean, disabled: Boolean,
clickable: Boolean,
border: { border: {
type: Boolean, type: Boolean,
value: true value: true

View File

@ -5,9 +5,10 @@
title="{{ title }}" title="{{ title }}"
title-class="title-class" title-class="title-class"
icon="{{ icon }}" icon="{{ icon }}"
is-link="{{ isLink }}"
value="{{ value }}" value="{{ value }}"
label="{{ label }}" label="{{ label }}"
is-link="{{ isLink }}"
clickable="{{ clickable }}"
border="{{ border && expanded }}" border="{{ border && expanded }}"
class="{{ utils.bem('collapse-item__title', { disabled, expanded }) }}" class="{{ utils.bem('collapse-item__title', { disabled, expanded }) }}"
right-icon-class="van-cell__right-icon" right-icon-class="van-cell__right-icon"

View File

@ -7,6 +7,9 @@ component_1.VantComponent({
type: 'descendant', type: 'descendant',
linked: function (child) { linked: function (child) {
this.children.push(child); this.children.push(child);
},
unlinked: function (child) {
this.children = this.children.filter(function (item) { return item !== child; });
} }
}, },
props: { props: {

View File

@ -1,7 +1,19 @@
"use strict"; "use strict";
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component"); var component_1 = require("../common/component");
var utils_1 = require("../common/utils"); var utils_1 = require("../common/utils");
var shared_1 = require("../picker/shared");
var currentYear = new Date().getFullYear(); var currentYear = new Date().getFullYear();
function isValidDate(date) { function isValidDate(date) {
return utils_1.isDef(date) && !isNaN(new Date(date).getTime()); return utils_1.isDef(date) && !isNaN(new Date(date).getTime());
@ -31,60 +43,37 @@ function getTrueValue(formattedValue) {
function getMonthEndDay(year, month) { function getMonthEndDay(year, month) {
return 32 - new Date(year, month - 1, 32).getDate(); return 32 - new Date(year, month - 1, 32).getDate();
} }
var defaultFormatter = function (_, value) { return value; };
component_1.VantComponent({ component_1.VantComponent({
props: { classes: ['active-class', 'toolbar-class', 'column-class'],
value: null, props: __assign({}, shared_1.pickerProps, { formatter: {
title: String, type: Function,
loading: Boolean, value: defaultFormatter
itemHeight: { }, value: null, type: {
type: Number,
value: 44
},
visibleItemCount: {
type: Number,
value: 5
},
confirmButtonText: {
type: String,
value: '确认'
},
cancelButtonText: {
type: String,
value: '取消'
},
type: {
type: String, type: String,
value: 'datetime' value: 'datetime'
}, }, showToolbar: {
showToolbar: {
type: Boolean, type: Boolean,
value: true value: true
}, }, minDate: {
minDate: {
type: Number, type: Number,
value: new Date(currentYear - 10, 0, 1).getTime() value: new Date(currentYear - 10, 0, 1).getTime()
}, }, maxDate: {
maxDate: {
type: Number, type: Number,
value: new Date(currentYear + 10, 11, 31).getTime() value: new Date(currentYear + 10, 11, 31).getTime()
}, }, minHour: {
minHour: {
type: Number, type: Number,
value: 0 value: 0
}, }, maxHour: {
maxHour: {
type: Number, type: Number,
value: 23 value: 23
}, }, minMinute: {
minMinute: {
type: Number, type: Number,
value: 0 value: 0
}, }, maxMinute: {
maxMinute: {
type: Number, type: Number,
value: 59 value: 59
} } }),
},
data: { data: {
innerValue: Date.now(), innerValue: Date.now(),
columns: [] columns: []
@ -110,7 +99,7 @@ component_1.VantComponent({
methods: { methods: {
getPicker: function () { getPicker: function () {
if (this.picker == null) { if (this.picker == null) {
var picker_1 = this.picker = this.selectComponent('.van-datetime-picker'); var picker_1 = (this.picker = this.selectComponent('.van-datetime-picker'));
var setColumnValues_1 = picker_1.setColumnValues; var setColumnValues_1 = picker_1.setColumnValues;
picker_1.setColumnValues = function () { picker_1.setColumnValues = function () {
var args = []; var args = [];
@ -123,12 +112,13 @@ component_1.VantComponent({
return this.picker; return this.picker;
}, },
updateColumns: function () { updateColumns: function () {
var _a = this.data.formatter, formatter = _a === void 0 ? defaultFormatter : _a;
var results = this.getRanges().map(function (_a, index) { var results = this.getRanges().map(function (_a, index) {
var type = _a.type, range = _a.range; var type = _a.type, range = _a.range;
var values = times(range[1] - range[0] + 1, function (index) { var values = times(range[1] - range[0] + 1, function (index) {
var value = range[0] + index; var value = range[0] + index;
value = type === 'year' ? "" + value : padZero(value); value = type === 'year' ? "" + value : padZero(value);
return value; return formatter(type, value);
}); });
return { values: values }; return { values: values };
}); });
@ -278,20 +268,26 @@ component_1.VantComponent({
updateColumnValue: function (value) { updateColumnValue: function (value) {
var _this = this; var _this = this;
var values = []; var values = [];
var data = this.data; var _a = this.data, type = _a.type, _b = _a.formatter, formatter = _b === void 0 ? defaultFormatter : _b;
var picker = this.getPicker(); var picker = this.getPicker();
if (data.type === 'time') { if (type === 'time') {
var pair = value.split(':'); var pair = value.split(':');
values = [pair[0], pair[1]]; values = [
formatter('hour', pair[0]),
formatter('minute', pair[1])
];
} }
else { else {
var date = new Date(value); var date = new Date(value);
values = ["" + date.getFullYear(), padZero(date.getMonth() + 1)]; values = [
if (data.type === 'date') { formatter('year', "" + date.getFullYear()),
values.push(padZero(date.getDate())); formatter('month', padZero(date.getMonth() + 1))
];
if (type === 'date') {
values.push(formatter('day', padZero(date.getDate())));
} }
if (data.type === 'datetime') { if (type === 'datetime') {
values.push(padZero(date.getDate()), padZero(date.getHours()), padZero(date.getMinutes())); values.push(formatter('day', padZero(date.getDate())), formatter('hour', padZero(date.getHours())), formatter('minute', padZero(date.getMinutes())));
} }
} }
return this.set({ innerValue: value }) return this.set({ innerValue: value })

View File

@ -1,5 +1,8 @@
<van-picker <van-picker
class="van-datetime-picker" class="van-datetime-picker"
active-class="active-class"
toolbar-class="toolbar-class"
column-class="column-class"
title="{{ title }}" title="{{ title }}"
columns="{{ columns }}" columns="{{ columns }}"
item-height="{{ itemHeight }}" item-height="{{ itemHeight }}"

View File

@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component"); var component_1 = require("../common/component");
component_1.VantComponent({ component_1.VantComponent({
field: true, field: true,
classes: ['input-class'], classes: ['input-class', 'right-icon-class'],
props: { props: {
size: String, size: String,
icon: String, icon: String,
@ -14,6 +14,7 @@ component_1.VantComponent({
center: Boolean, center: Boolean,
isLink: Boolean, isLink: Boolean,
leftIcon: String, leftIcon: String,
rightIcon: String,
disabled: Boolean, disabled: Boolean,
autosize: Boolean, autosize: Boolean,
readonly: Boolean, readonly: Boolean,
@ -28,8 +29,6 @@ component_1.VantComponent({
errorMessage: String, errorMessage: String,
placeholder: String, placeholder: String,
customStyle: String, customStyle: String,
useIconSlot: Boolean,
useButtonSlot: Boolean,
showConfirmBar: { showConfirmBar: {
type: Boolean, type: Boolean,
value: true value: true

View File

@ -24,9 +24,6 @@
disabled="{{ disabled || readonly }}" disabled="{{ disabled || readonly }}"
maxlength="{{ maxlength }}" maxlength="{{ maxlength }}"
auto-height="{{ autosize }}" auto-height="{{ autosize }}"
placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}"
placeholder-class="{{ error ? 'van-field__input--error' : 'van-field__placeholder' }}"
cursor-spacing="{{ cursorSpacing }}" cursor-spacing="{{ cursorSpacing }}"
adjust-position="{{ adjustPosition }}" adjust-position="{{ adjustPosition }}"
show-confirm-bar="{{ showConfirmBar }}" show-confirm-bar="{{ showConfirmBar }}"
@ -34,7 +31,11 @@
bind:blur="onBlur" bind:blur="onBlur"
bind:focus="onFocus" bind:focus="onFocus"
bind:confirm="onConfirm" bind:confirm="onConfirm"
/> >
<view wx:if="{{ value == null || value.length === 0 }}" style="{{ placeholderStyle }}" class="{{ utils.bem('field__placeholder', { error }) }}">
{{ placeholder }}
</view>
</textarea>
<input <input
wx:else wx:else
class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}" class="input-class {{ utils.bem('field__input', [inputAlign, { disabled, error }]) }}"
@ -45,7 +46,7 @@
maxlength="{{ maxlength }}" maxlength="{{ maxlength }}"
placeholder="{{ placeholder }}" placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}" placeholder-style="{{ placeholderStyle }}"
placeholder-class="{{ error ? 'van-field__input--error' : 'van-field__placeholder' }}" placeholder-class="{{ error ? 'van-field__placeholder--error' : 'van-field__placeholder' }}"
confirm-type="{{ confirmType }}" confirm-type="{{ confirmType }}"
confirm-hold="{{ confirmHold }}" confirm-hold="{{ confirmHold }}"
cursor-spacing="{{ cursorSpacing }}" cursor-spacing="{{ cursorSpacing }}"
@ -59,20 +60,21 @@
wx:if="{{ showClear }}" wx:if="{{ showClear }}"
size="16px" size="16px"
name="clear" name="clear"
class="van-field__clear-root" class="van-field__clear-root van-field__icon-root"
custom-class="van-field__clear" bindtouchstart="onClear"
bind:touchstart="onClear"
/> />
<view class="van-field__icon-container" wx:if="{{ icon || useIconSlot }}" bind:tap="onClickIcon"> <view class="van-field__icon-container" bind:tap="onClickIcon">
<van-icon <van-icon
wx:if="{{ icon }}" wx:if="{{ rightIcon || icon }}"
size="16px" size="16px"
name="{{ icon }}" name="{{ rightIcon || icon }}"
custom-class="van-field__icon {{ iconClass }}" class="van-field__icon-root {{ iconClass }}"
custom-class="right-icon-class"
/> />
<slot wx:else name="icon" /> <slot name="right-icon" />
<slot name="icon" />
</view> </view>
<view wx:if="{{ useButtonSlot }}" class="van-field__button"> <view class="van-field__button">
<slot name="button" /> <slot name="button" />
</view> </view>
</view> </view>

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{min-height:24px}.van-field__input{display:block;width:100%;height:24px;min-height:24px;padding:0;margin:0;line-height:inherit;color:#333;text-align:left;background-color:initial;border:0;box-sizing:border-box;resize:none}.van-field__input--disabled{color:#999;background-color:initial;opacity:1}.van-field__input--center{text-align:center}.van-field__input--right{text-align:right}.van-field__input--error{color:#f44}.van-field__placeholder{color:#999}.van-field__clear-root{display:-webkit-flex;display:flex;height:24px;-webkit-align-items:center;align-items:center}.van-field__button,.van-field__clear,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear,.van-field__icon-container{padding:0 10px;margin-right:-10px;line-height:inherit;vertical-align:middle}.van-field__clear{color:#c9c9c9}.van-field__icon-container{color:#999}.van-field__icon{display:block!important}.van-field__button{padding-left:10px}.van-field__error-message{font-size:12px;color:#f44;text-align:left}.van-field__error--center{text-align:center}.van-field__error--right{text-align:right} @import '../common/index.wxss';.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{min-height:24px}.van-field__input{position:relative;display:block;width:100%;height:24px;min-height:24px;padding:0;margin:0;line-height:inherit;color:#333;text-align:left;background-color:initial;border:0;box-sizing:border-box;resize:none}.van-field__input--disabled{color:#999;background-color:initial;opacity:1}.van-field__input--center{text-align:center}.van-field__input--right{text-align:right}.van-field__placeholder{position:absolute;top:0;left:0;color:#999;pointer-events:none}.van-field__placeholder--error{color:#f44}.van-field__icon-root{display:-webkit-flex;display:flex;min-height:24px;-webkit-align-items:center;align-items:center}.van-field__clear-root,.van-field__icon-container{padding:0 10px;margin-right:-10px;line-height:inherit;vertical-align:middle}.van-field__button,.van-field__clear-root,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear-root{color:#c9c9c9}.van-field__icon-container{color:#999}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:10px}.van-field__button:empty{display:none}.van-field__error-message{font-size:12px;color:#f44;text-align:left}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}

File diff suppressed because one or more lines are too long

View File

@ -18,6 +18,10 @@ component_1.VantComponent({
duration: { duration: {
type: Number, type: Number,
value: 3000 value: 3000
},
zIndex: {
type: Number,
value: 110
} }
}, },
methods: { methods: {

View File

@ -2,7 +2,7 @@
name="slide-down" name="slide-down"
show="{{ show }}" show="{{ show }}"
custom-class="van-notify" custom-class="van-notify"
custom-style="background-color:{{ backgroundColor }}; color: {{ color }};" custom-style="background-color:{{ backgroundColor }}; color: {{ color }}; z-index: {{ zIndex }};"
> >
<view wx:if="{{ safeAreaInsetTop }}" class="van-notify__safe-top" style="padding-top: {{ statusBarHeight }}px"></view> <view wx:if="{{ safeAreaInsetTop }}" class="van-notify__safe-top" style="padding-top: {{ statusBarHeight }}px"></view>
{{ text }} {{ text }}

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-notify{position:fixed;top:0;z-index:110;width:100%;padding:6px 15px;font-size:14px;line-height:20px;text-align:center;word-break:break-all;box-sizing:border-box}.van-notify__safe-top{height:44px} @import '../common/index.wxss';.van-notify{position:fixed;top:0;width:100%;padding:6px 15px;font-size:14px;line-height:20px;text-align:center;word-break:break-all;box-sizing:border-box}.van-notify__safe-top{height:44px}

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-picker-column{overflow:hidden;font-size:16px;text-align:center}.van-picker-column__item{padding:0 5px;color:#999}.van-picker-column__item--selected{font-weight:500;color:#333}.van-picker-column__item--disabled{opacity:.3} @import '../common/index.wxss';.van-picker-column{overflow:hidden;font-size:16px;color:#999;text-align:center}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{font-weight:500;color:#333}.van-picker-column__item--disabled{opacity:.3}

View File

@ -1,42 +1,38 @@
"use strict"; "use strict";
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component"); var component_1 = require("../common/component");
function isSimple(columns) { var shared_1 = require("./shared");
return columns.length && !columns[0].values;
}
component_1.VantComponent({ component_1.VantComponent({
classes: ['active-class', 'toolbar-class', 'column-class'], classes: ['active-class', 'toolbar-class', 'column-class'],
props: { props: __assign({}, shared_1.pickerProps, { valueKey: {
title: String,
loading: Boolean,
showToolbar: Boolean,
confirmButtonText: String,
cancelButtonText: String,
visibleItemCount: {
type: Number,
value: 5
},
valueKey: {
type: String, type: String,
value: 'text' value: 'text'
}, }, defaultIndex: {
itemHeight: {
type: Number, type: Number,
value: 44 value: 0
}, }, columns: {
columns: {
type: Array, type: Array,
value: [], value: [],
observer: function (columns) { observer: function (columns) {
if (columns === void 0) { columns = []; } if (columns === void 0) { columns = []; }
this.simple = isSimple(columns); this.simple = columns.length && !columns[0].values;
this.children = this.selectAllComponents('.van-picker__column'); this.children = this.selectAllComponents('.van-picker__column');
if (Array.isArray(this.children) && this.children.length) { if (Array.isArray(this.children) && this.children.length) {
this.setColumns().catch(function () { }); this.setColumns().catch(function () { });
} }
} }
} } }),
},
beforeCreate: function () { beforeCreate: function () {
this.children = []; this.children = [];
}, },

View File

@ -10,7 +10,7 @@
data-type="cancel" data-type="cancel"
bindtap="emit" bindtap="emit"
> >
{{ cancelButtonText || '取消' }} {{ cancelButtonText }}
</view> </view>
<view wx:if="{{ title }}" class="van-picker__title van-ellipsis">{{ title }}</view> <view wx:if="{{ title }}" class="van-picker__title van-ellipsis">{{ title }}</view>
<view <view
@ -20,7 +20,7 @@
data-type="confirm" data-type="confirm"
bindtap="emit" bindtap="emit"
> >
{{ confirmButtonText || '确认' }} {{ confirmButtonText }}
</view> </view>
</view> </view>
<view wx:if="{{ loading }}" class="van-picker__loading"> <view wx:if="{{ loading }}" class="van-picker__loading">
@ -39,7 +39,7 @@
custom-class="column-class" custom-class="column-class"
value-key="{{ valueKey }}" value-key="{{ valueKey }}"
initial-options="{{ isSimple(columns) ? item : item.values }}" initial-options="{{ isSimple(columns) ? item : item.values }}"
default-index="{{ item.defaultIndex }}" default-index="{{ item.defaultIndex || defaultIndex }}"
item-height="{{ itemHeight }}" item-height="{{ itemHeight }}"
visible-item-count="{{ visibleItemCount }}" visible-item-count="{{ visibleItemCount }}"
active-class="active-class" active-class="active-class"

23
lib/picker/shared.js Normal file
View File

@ -0,0 +1,23 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.pickerProps = {
title: String,
loading: Boolean,
showToolbar: Boolean,
cancelButtonText: {
type: String,
value: '取消'
},
confirmButtonText: {
type: String,
value: '确认'
},
visibleItemCount: {
type: Number,
value: 5
},
itemHeight: {
type: Number,
value: 44
}
};

View File

@ -52,13 +52,14 @@ component_1.VantComponent({
this.touchMove(event); this.touchMove(event);
this.getRect('.van-slider').then(function (rect) { this.getRect('.van-slider').then(function (rect) {
var diff = _this.deltaX / rect.width * 100; var diff = _this.deltaX / rect.width * 100;
_this.updateValue(_this.startValue + diff, false, true); _this.newValue = _this.startValue + diff;
_this.updateValue(_this.newValue, false, true);
}); });
}, },
onTouchEnd: function () { onTouchEnd: function () {
if (this.data.disabled) if (this.data.disabled)
return; return;
this.updateValue(this.data.value, true); this.updateValue(this.newValue, true);
}, },
onClick: function (event) { onClick: function (event) {
var _this = this; var _this = this;

View File

@ -24,6 +24,10 @@ component_1.VantComponent({
buttonType: { buttonType: {
type: String, type: String,
value: 'danger' value: 'danger'
},
decimalLength: {
type: Number,
value: 2
} }
}, },
computed: { computed: {
@ -31,7 +35,7 @@ component_1.VantComponent({
return typeof this.data.price === 'number'; return typeof this.data.price === 'number';
}, },
priceStr: function () { priceStr: function () {
return (this.data.price / 100).toFixed(2); return (this.data.price / 100).toFixed(this.data.decimalLength);
}, },
tipStr: function () { tipStr: function () {
var tip = this.data.tip; var tip = this.data.tip;

View File

@ -25,11 +25,6 @@ component_1.VantComponent({
} }
}, },
methods: { methods: {
clear: function () {
this.set({
show: false
});
},
// for prevent touchmove // for prevent touchmove
noop: function () { } noop: function () { }
} }

View File

@ -27,5 +27,7 @@
<van-icon wx:else class="van-toast__icon" name="{{ type }}" /> <van-icon wx:else class="van-toast__icon" name="{{ type }}" />
<text wx:if="{{ message }}" class="van-toast__text">{{ message }}</text> <text wx:if="{{ message }}" class="van-toast__text">{{ message }}</text>
</block> </block>
<slot />
</view> </view>
</van-transition> </van-transition>

View File

@ -33,9 +33,8 @@ function getContext() {
var pages = getCurrentPages(); var pages = getCurrentPages();
return pages[pages.length - 1]; return pages[pages.length - 1];
} }
var Toast = function (options) { function Toast(toastOptions) {
if (options === void 0) { options = {}; } var options = __assign({}, currentOptions, parseOptions(toastOptions));
options = __assign({}, currentOptions, parseOptions(options));
var context = options.context || getContext(); var context = options.context || getContext();
var toast = context.selectComponent(options.selector); var toast = context.selectComponent(options.selector);
if (!toast) { if (!toast) {
@ -44,6 +43,12 @@ var Toast = function (options) {
} }
delete options.context; delete options.context;
delete options.selector; delete options.selector;
toast.clear = function () {
toast.set({ show: false });
if (options.onClose) {
options.onClose();
}
};
queue.push(toast); queue.push(toast);
toast.set(options); toast.set(options);
clearTimeout(toast.timer); clearTimeout(toast.timer);
@ -54,11 +59,13 @@ var Toast = function (options) {
}, options.duration); }, options.duration);
} }
return toast; return toast;
}; }
var createMethod = function (type) { return function (options) { return Toast(__assign({ type: type }, parseOptions(options))); }; }; var createMethod = function (type) { return function (options) {
['loading', 'success', 'fail'].forEach(function (method) { return Toast(__assign({ type: type }, parseOptions(options)));
Toast[method] = createMethod(method); }; };
}); Toast.loading = createMethod('loading');
Toast.success = createMethod('success');
Toast.fail = createMethod('fail');
Toast.clear = function () { Toast.clear = function () {
queue.forEach(function (toast) { queue.forEach(function (toast) {
toast.clear(); toast.clear();