[build] 0.4.9

This commit is contained in:
陈嘉涵 2018-12-07 16:13:02 +08:00
parent e7b8f6741e
commit 6e7dafb4ed
57 changed files with 357 additions and 132 deletions

View File

@ -19,6 +19,10 @@ VantComponent({
closeOnClickOverlay: { closeOnClickOverlay: {
type: Boolean, type: Boolean,
value: true value: true
},
safeAreaInsetBottom: {
type: Boolean,
value: true
} }
}, },
methods: { methods: {

View File

@ -4,6 +4,7 @@
z-index="{{ zIndex }}" z-index="{{ zIndex }}"
overlay="{{ overlay }}" overlay="{{ overlay }}"
custom-class="van-action-sheet" custom-class="van-action-sheet"
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
close-on-click-overlay="{{ closeOnClickOverlay }}" close-on-click-overlay="{{ closeOnClickOverlay }}"
bind:close="onClose" bind:close="onClose"
> >

4
dist/area/index.js vendored
View File

@ -128,7 +128,7 @@ VantComponent({
var code = this.code || this.data.areaList && Object.keys(this.data.areaList.county_list || {})[0] || ''; var code = this.code || this.data.areaList && Object.keys(this.data.areaList.county_list || {})[0] || '';
var province = this.getList('province'); var province = this.getList('province');
var city = this.getList('city', code.slice(0, 2)); var city = this.getList('city', code.slice(0, 2));
this.setData({ this.set({
'columns[0]': province, 'columns[0]': province,
'columns[1]': city 'columns[1]': city
}); });
@ -137,7 +137,7 @@ VantComponent({
code = city[0].code; code = city[0].code;
} }
this.setData({ this.set({
'columns[2]': this.getList('county', code.slice(0, 4)), 'columns[2]': this.getList('county', code.slice(0, 4)),
pickerValue: [this.getIndex('province', code), this.getIndex('city', code), this.getIndex('county', code)] pickerValue: [this.getIndex('province', code), this.getIndex('city', code), this.getIndex('county', code)]
}); });

2
dist/badge/index.js vendored
View File

@ -17,7 +17,7 @@ VantComponent({
} }
}, },
setActive: function setActive(active) { setActive: function setActive(active) {
this.setData({ this.set({
active: active active: active
}); });
} }

View File

@ -8,7 +8,7 @@ VantComponent({
var _this$data = this.data, var _this$data = this.data,
value = _this$data.value, value = _this$data.value,
disabled = _this$data.disabled; disabled = _this$data.disabled;
target.setData({ target.set({
value: value.indexOf(target.data.name) !== -1, value: value.indexOf(target.data.name) !== -1,
disabled: disabled || target.data.disabled disabled: disabled || target.data.disabled
}); });
@ -23,7 +23,7 @@ VantComponent({
value: function value(_value) { value: function value(_value) {
var children = this.getRelationNodes('../checkbox/index'); var children = this.getRelationNodes('../checkbox/index');
children.forEach(function (child) { children.forEach(function (child) {
child.setData({ child.set({
value: _value.indexOf(child.data.name) !== -1 value: _value.indexOf(child.data.name) !== -1
}); });
}); });
@ -31,7 +31,7 @@ VantComponent({
disabled: function disabled(_disabled) { disabled: function disabled(_disabled) {
var children = this.getRelationNodes('../checkbox/index'); var children = this.getRelationNodes('../checkbox/index');
children.forEach(function (child) { children.forEach(function (child) {
child.setData({ child.set({
disabled: _disabled || child.data.disabled disabled: _disabled || child.data.disabled
}); });
}); });

2
dist/col/index.js vendored
View File

@ -28,7 +28,7 @@ VantComponent({
var style = gutter ? "padding-left: " + padding + "; padding-right: " + padding + ";" : ''; var style = gutter ? "padding-left: " + padding + "; padding-right: " + padding + ";" : '';
if (style !== this.data.style) { if (style !== this.data.style) {
this.setData({ this.set({
style: style style: style
}); });
} }

View File

@ -60,7 +60,7 @@ VantComponent({
this.updateStyle(expanded); this.updateStyle(expanded);
} }
this.setData({ this.set({
expanded: expanded expanded: expanded
}); });
}, },
@ -69,12 +69,12 @@ VantComponent({
if (expanded) { if (expanded) {
this.getRect('.van-collapse-item__content').then(function (res) { this.getRect('.van-collapse-item__content').then(function (res) {
_this.setData({ _this.set({
contentHeight: res.height ? res.height + 'px' : null contentHeight: res.height ? res.height + 'px' : null
}); });
}); });
} else { } else {
this.setData({ this.set({
contentHeight: 0 contentHeight: 0
}); });
} }

View File

@ -9,7 +9,6 @@
class="{{ titleClass }}" class="{{ titleClass }}"
right-icon-class="van-cell__right-icon" right-icon-class="van-cell__right-icon"
custom-class="van-cell" custom-class="van-cell"
arrow-direction="{{ expanded ? 'up' : 'down' }}"
bind:click="onClick" bind:click="onClick"
> >
<slot <slot

View File

@ -4,7 +4,7 @@ VantComponent({
name: 'collapse-item', name: 'collapse-item',
type: 'descendant', type: 'descendant',
linked: function linked(child) { linked: function linked(child) {
this.setData({ this.set({
items: this.data.items.concat([child]) items: this.data.items.concat([child])
}, function () { }, function () {
child.updateExpanded(); child.updateExpanded();

View File

@ -11,8 +11,4 @@ function isNumber(value) {
return /^\d+$/.test(value); return /^\d+$/.test(value);
} }
function isSrc(url) { export { isObj, isDef, isNumber };
return /^(https?:)?\/\/|data:image/.test(url);
}
export { isObj, isDef, isSrc, isNumber };

5
dist/common/utils.wxs vendored Normal file
View File

@ -0,0 +1,5 @@
function isSrc(url) {
return url.indexOf('http') === 0 || url.indexOf('data:image') === 0;
}
module.exports.isSrc = isSrc;

View File

@ -96,7 +96,7 @@ VantComponent({
var isEqual = val === data.innerValue; var isEqual = val === data.innerValue;
if (!isEqual) { if (!isEqual) {
this.setData({ this.set({
innerValue: val innerValue: val
}, function () { }, function () {
_this2.updateColumnValue(val); _this2.updateColumnValue(val);
@ -259,7 +259,7 @@ VantComponent({
var data = this.data; var data = this.data;
var pickerValue = event.detail.value; var pickerValue = event.detail.value;
var values = pickerValue.map(function (value, index) { var values = pickerValue.slice(0, data.columns.length).map(function (value, index) {
return data.columns[index][value]; return data.columns[index][value];
}); });
var value; var value;
@ -289,7 +289,7 @@ VantComponent({
} }
value = this.correctValue(value); value = this.correctValue(value);
this.setData({ this.set({
innerValue: value innerValue: value
}, function () { }, function () {
_this3.updateColumnValue(value); _this3.updateColumnValue(value);
@ -307,7 +307,7 @@ VantComponent({
pickerValue = _this$data.pickerValue, pickerValue = _this$data.pickerValue,
columns = _this$data.columns; columns = _this$data.columns;
pickerValue[index] = columns[index].indexOf(value); pickerValue[index] = columns[index].indexOf(value);
this.setData({ this.set({
pickerValue: pickerValue pickerValue: pickerValue
}); });
}, },
@ -317,7 +317,7 @@ VantComponent({
setColumnValues: function setColumnValues(index, values) { setColumnValues: function setColumnValues(index, values) {
var columns = this.data.columns; var columns = this.data.columns;
columns[index] = values; columns[index] = values;
this.setData({ this.set({
columns: columns columns: columns
}); });
}, },
@ -331,7 +331,7 @@ VantComponent({
}, },
setValues: function setValues(values) { setValues: function setValues(values) {
var columns = this.data.columns; var columns = this.data.columns;
this.setData({ this.set({
pickerValue: values.map(function (value, index) { pickerValue: values.map(function (value, index) {
return columns[index].indexOf(value); return columns[index].indexOf(value);
}) })
@ -359,7 +359,7 @@ VantComponent({
} }
} }
this.setData({ this.set({
pickerValue: values pickerValue: values
}); });
} }
@ -368,7 +368,7 @@ VantComponent({
var _this4 = this; var _this4 = this;
var innerValue = this.correctValue(this.data.value); var innerValue = this.correctValue(this.data.value);
this.setData({ this.set({
innerValue: innerValue innerValue: innerValue
}, function () { }, function () {
_this4.updateColumnValue(innerValue); _this4.updateColumnValue(innerValue);

View File

@ -15,7 +15,7 @@ var Dialog = function Dialog(options) {
delete options.selector; delete options.selector;
if (dialog) { if (dialog) {
dialog.setData(_extends({ dialog.set(_extends({
onCancel: reject, onCancel: reject,
onConfirm: resolve onConfirm: resolve
}, options)); }, options));

View File

@ -59,7 +59,7 @@ VantComponent({
}, },
handleAction: function handleAction(action) { handleAction: function handleAction(action) {
if (this.data.asyncClose) { if (this.data.asyncClose) {
this.setData({ this.set({
["loading." + action]: true ["loading." + action]: true
}); });
} }
@ -67,12 +67,12 @@ VantComponent({
this.onClose(action); this.onClose(action);
}, },
close: function close() { close: function close() {
this.setData({ this.set({
show: false show: false
}); });
}, },
stopLoading: function stopLoading() { stopLoading: function stopLoading() {
this.setData({ this.set({
loading: { loading: {
confirm: false, confirm: false,
cancel: false cancel: false

8
dist/field/index.js vendored
View File

@ -77,7 +77,7 @@ VantComponent({
_ref$value = _ref.value, _ref$value = _ref.value,
value = _ref$value === void 0 ? '' : _ref$value; value = _ref$value === void 0 ? '' : _ref$value;
this.setData({ this.set({
value: value, value: value,
showClear: this.getShowClear(value) showClear: this.getShowClear(value)
}, function () { }, function () {
@ -98,7 +98,7 @@ VantComponent({
height: height height: height
}); });
this.focused = true; this.focused = true;
this.setData({ this.set({
showClear: this.getShowClear() showClear: this.getShowClear()
}); });
}, },
@ -114,7 +114,7 @@ VantComponent({
cursor: cursor cursor: cursor
}); });
this.focused = false; this.focused = false;
this.setData({ this.set({
showClear: this.getShowClear() showClear: this.getShowClear()
}); });
}, },
@ -128,7 +128,7 @@ VantComponent({
onClear: function onClear() { onClear: function onClear() {
var _this2 = this; var _this2 = this;
this.setData({ this.set({
value: '', value: '',
showClear: this.getShowClear('') showClear: this.getShowClear('')
}, function () { }, function () {

View File

@ -1,2 +1,19 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
VantComponent(); VantComponent({
props: {
safeAreaInsetBottom: {
type: Boolean,
value: true
}
},
computed: {
rootClass: function rootClass() {
var _this$data = this.data,
safeAreaInsetBottom = _this$data.safeAreaInsetBottom,
isIPhoneX = _this$data.isIPhoneX;
return this.classNames('van-goods-action', 'custom-class', {
["van-goods-action--safe"]: isIPhoneX && safeAreaInsetBottom
});
}
}
});

View File

@ -1,3 +1,3 @@
<view class="van-goods-action custom-class"> <view class="{{ rootClass }}">
<slot /> <slot />
</view> </view>

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-goods-action{left:0;right:0;bottom:0;display:-webkit-flex;display:flex;position:fixed} @import '../common/index.wxss';.van-goods-action{position:fixed;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;background-color:#fff}.van-goods-action--safe{padding-bottom:34px}

6
dist/icon/index.js vendored
View File

@ -1,4 +1,3 @@
import { isSrc as _isSrc } from '../common/utils';
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
VantComponent({ VantComponent({
props: { props: {
@ -12,11 +11,6 @@ VantComponent({
value: 'van-icon' value: 'van-icon'
} }
}, },
computed: {
isSrc: function isSrc() {
return _isSrc(this.data.name);
}
},
methods: { methods: {
onClick: function onClick() { onClick: function onClick() {
this.$emit('click'); this.$emit('click');

View File

@ -1,5 +1,5 @@
<view <view
class="custom-class {{ classPrefix }} {{ isSrc ? 'van-icon--image' : classPrefix + '-' + name }}" class="custom-class {{ classPrefix }} {{ utils.isSrc(name) ? 'van-icon--image' : classPrefix + '-' + name }}"
style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + size + ';' : '' }}{{ customStyle }}" style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + size + ';' : '' }}{{ customStyle }}"
bind:tap="onClick" bind:tap="onClick"
> >
@ -10,7 +10,9 @@
{{ info }} {{ info }}
</view> </view>
<image <image
wx:if="{{ isSrc }}" wx:if="{{ utils.isSrc(name) }}"
src="{{ name }}" src="{{ name }}"
/> />
</view> </view>
<wxs src="../common/utils.wxs" module="utils" />

22
dist/mixins/basic.js vendored
View File

@ -1,15 +1,33 @@
import { classNames } from '../common/class-names'; import { classNames } from '../common/class-names';
export var basic = Behavior({ export var basic = Behavior({
created: function created() {
var _this = this;
wx.getSystemInfo({
success: function success(_ref) {
var model = _ref.model,
screenHeight = _ref.screenHeight;
var isIphoneX = /iphone x/i.test(model);
var isIphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
if (isIphoneX || isIphoneNew) {
_this.set({
isIPhoneX: true
});
}
}
});
},
methods: { methods: {
classNames: classNames, classNames: classNames,
$emit: function $emit() { $emit: function $emit() {
this.triggerEvent.apply(this, arguments); this.triggerEvent.apply(this, arguments);
}, },
getRect: function getRect(selector, all) { getRect: function getRect(selector, all) {
var _this = this; var _this2 = this;
return new Promise(function (resolve) { return new Promise(function (resolve) {
wx.createSelectorQuery().in(_this)[all ? 'selectAll' : 'select'](selector).boundingClientRect(function (rect) { wx.createSelectorQuery().in(_this2)[all ? 'selectAll' : 'select'](selector).boundingClientRect(function (rect) {
if (all && Array.isArray(rect) && rect.length) { if (all && Array.isArray(rect) && rect.length) {
resolve(rect); resolve(rect);
} }

View File

@ -7,14 +7,13 @@ export var behavior = Behavior({
} }
var cache = {}; var cache = {};
var setData = this.setData;
var _this$$options = this.$options(), var _this$$options = this.$options(),
computed = _this$$options.computed; computed = _this$$options.computed;
var keys = Object.keys(computed); var keys = Object.keys(computed);
var calcComputed = function calcComputed() { this.calcComputed = function () {
var needUpdate = {}; var needUpdate = {};
keys.forEach(function (key) { keys.forEach(function (key) {
var value = computed[key].call(_this); var value = computed[key].call(_this);
@ -25,17 +24,20 @@ export var behavior = Behavior({
}); });
return needUpdate; return needUpdate;
}; };
Object.defineProperty(this, 'setData', {
writable: true
});
this.setData = function (data, callback) {
data && setData.call(_this, data, callback);
setData.call(_this, calcComputed());
};
}, },
attached: function attached() { attached: function attached() {
this.setData(); this.set();
},
methods: {
// set data and set computed data
set: function set(data, callback) {
if (data) {
this.setData(data, callback);
}
if (this.calcComputed) {
this.setData(this.calcComputed());
}
}
} }
}); });

View File

@ -3,6 +3,7 @@ import { observeProps } from './props';
export function observe(vantOptions, options) { export function observe(vantOptions, options) {
var watch = vantOptions.watch, var watch = vantOptions.watch,
computed = vantOptions.computed; computed = vantOptions.computed;
options.behaviors.push(behavior);
if (watch) { if (watch) {
var props = options.properties || {}; var props = options.properties || {};
@ -24,7 +25,6 @@ export function observe(vantOptions, options) {
} }
if (computed) { if (computed) {
options.behaviors.push(behavior);
options.methods = options.methods || {}; options.methods = options.methods || {};
options.methods.$options = function () { options.methods.$options = function () {

View File

@ -24,7 +24,7 @@ export function observeProps(props) {
observer.apply(this, arguments); observer.apply(this, arguments);
} }
this.setData(); this.set();
}; };
props[key] = prop; props[key] = prop;

View File

@ -15,25 +15,47 @@ export var transition = function transition(showDefaultValue) {
data: { data: {
type: '', type: '',
inited: false, inited: false,
display: false display: false,
supportAnimation: true
}, },
attached: function attached() { attached: function attached() {
if (this.data.show) { if (this.data.show) {
this.show(); this.show();
} }
this.detectSupport();
}, },
methods: { methods: {
detectSupport: function detectSupport() {
var _this = this;
wx.getSystemInfo({
success: function success(info) {
if (info && info.system && info.system.indexOf('iOS 8') === 0) {
_this.set({
supportAnimation: false
});
}
}
});
},
observeShow: function observeShow(value) { observeShow: function observeShow(value) {
if (value) { if (value) {
this.show(); this.show();
} else { } else {
this.setData({ if (this.data.supportAnimation) {
type: 'leave' this.set({
}); type: 'leave'
});
} else {
this.set({
display: false
});
}
} }
}, },
show: function show() { show: function show() {
this.setData({ this.set({
inited: true, inited: true,
display: true, display: true,
type: 'enter' type: 'enter'
@ -41,7 +63,7 @@ export var transition = function transition(showDefaultValue) {
}, },
onAnimationEnd: function onAnimationEnd() { onAnimationEnd: function onAnimationEnd() {
if (!this.data.show) { if (!this.data.show) {
this.setData({ this.set({
display: false display: false
}); });
} }

View File

@ -56,12 +56,12 @@ VantComponent({
}, },
watch: { watch: {
text: function text() { text: function text() {
this.setData({}, this.init); this.set({}, this.init);
} }
}, },
created: function created() { created: function created() {
if (this.data.mode) { if (this.data.mode) {
this.setData({ this.set({
hasRightIcon: true hasRightIcon: true
}); });
} }
@ -79,7 +79,7 @@ VantComponent({
return; return;
} }
_this.setData({ _this.set({
width: rect.width width: rect.width
}); });
@ -107,7 +107,7 @@ VantComponent({
timeingFunction: 'linear' timeingFunction: 'linear'
}); });
_this.setData({ _this.set({
elapse: elapse, elapse: elapse,
wrapWidth: wrapWidth, wrapWidth: wrapWidth,
animation: animation, animation: animation,
@ -130,25 +130,25 @@ VantComponent({
speed = _this$data2.speed; speed = _this$data2.speed;
resetAnimation.translateX(wrapWidth).step(); resetAnimation.translateX(wrapWidth).step();
var animationData = animation.translateX(-(elapse * speed) / 1000).step(); var animationData = animation.translateX(-(elapse * speed) / 1000).step();
this.setData({ this.set({
animationData: resetAnimation.export() animationData: resetAnimation.export()
}); });
setTimeout(function () { setTimeout(function () {
_this2.setData({ _this2.set({
animationData: animationData.export() animationData: animationData.export()
}); });
}, 100); }, 100);
var timer = setTimeout(function () { var timer = setTimeout(function () {
_this2.scroll(); _this2.scroll();
}, elapse); }, elapse);
this.setData({ this.set({
timer: timer timer: timer
}); });
}, },
onClickIcon: function onClickIcon() { onClickIcon: function onClickIcon() {
var timer = this.data.timer; var timer = this.data.timer;
timer && clearTimeout(timer); timer && clearTimeout(timer);
this.setData({ this.set({
show: false, show: false,
timer: null timer: null
}); });

View File

@ -22,7 +22,7 @@ VantComponent({
var duration = this.data.duration; var duration = this.data.duration;
clearTimeout(this.timer); clearTimeout(this.timer);
this.setData({ this.set({
show: true show: true
}); });
@ -34,7 +34,7 @@ VantComponent({
}, },
hide: function hide() { hide: function hide() {
clearTimeout(this.timer); clearTimeout(this.timer);
this.setData({ this.set({
show: false show: false
}); });
} }

View File

@ -26,7 +26,7 @@ export default function Notify(options) {
delete options.selector; delete options.selector;
if (notify) { if (notify) {
notify.setData(options); notify.set(options);
notify.show(); notify.show();
} else { } else {
console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确'); console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');

16
dist/popup/index.js vendored
View File

@ -21,6 +21,22 @@ VantComponent({
position: { position: {
type: String, type: String,
value: 'center' value: 'center'
},
safeAreaInsetBottom: {
type: Boolean,
value: true
}
},
computed: {
popupClass: function popupClass() {
var _this$data = this.data,
position = _this$data.position,
safeAreaInsetBottom = _this$data.safeAreaInsetBottom,
isIPhoneX = _this$data.isIPhoneX;
return this.classNames('custom-class', 'van-popup', {
["van-popup--" + position]: position,
["van-popup--safe"]: isIPhoneX && safeAreaInsetBottom && position === 'bottom'
});
} }
}, },
methods: { methods: {

View File

@ -8,8 +8,8 @@
/> />
<view <view
wx:if="{{ inited }}" wx:if="{{ inited }}"
class="custom-class van-popup {{ position ? 'van-popup--' + position : '' }}" class="{{ popupClass }}"
style="z-index: {{ zIndex }}; animation-name: van-{{ transition || position }}-{{ type }}; animation-duration: {{ duration }}ms; {{ display ? '' : 'display: none;' }}{{ customStyle }}" style="z-index: {{ zIndex }}; -webkit-animation: van-{{ transition || position }}-{{ type }} {{ duration }}ms both; animation: van-{{ transition || position }}-{{ type }} {{ duration }}ms both; {{ display ? '' : 'display: none;' }}{{ customStyle }}"
bind:animationend="onAnimationEnd" bind:animationend="onAnimationEnd"
> >
<slot /> <slot />

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-popup{top:50%;left:50%;position:fixed;max-height:100%;overflow-y:auto;box-sizing:border-box;background-color:#fff;-webkit-overflow-scrolling:touch;-webkit-animation:ease both;animation:ease both}.van-popup--center{-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-popup--top{width:100%;top:0;right:auto;bottom:auto;left:50%}.van-popup--right{top:50%;right:0;bottom:auto;left:auto}.van-popup--bottom{width:100%;top:auto;bottom:0;right:auto;left:50%}.van-popup--left{top:50%;right:auto;bottom:auto;left:0}@-webkit-keyframes van-center-enter{from{opacity:0}}@keyframes van-center-enter{from{opacity:0}}@-webkit-keyframes van-center-leave{to{opacity:0}}@keyframes van-center-leave{to{opacity:0}}@-webkit-keyframes van-scale-enter{from{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}}@keyframes van-scale-enter{from{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}}@-webkit-keyframes van-scale-leave{to{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}}@keyframes van-scale-leave{to{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}}@-webkit-keyframes van-bottom-enter{from{-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}}@keyframes van-bottom-enter{from{-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}}@-webkit-keyframes van-bottom-leave{from{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}to{-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}}@keyframes van-bottom-leave{from{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}to{-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}}@-webkit-keyframes van-top-enter{from{-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}}@keyframes van-top-enter{from{-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}}@-webkit-keyframes van-top-leave{from{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}to{-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}}@keyframes van-top-leave{from{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}to{-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}}@-webkit-keyframes van-left-enter{from{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}to{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}}@keyframes van-left-enter{from{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}to{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}}@-webkit-keyframes van-left-leave{from{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}to{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}}@keyframes van-left-leave{from{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}to{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}}@-webkit-keyframes van-right-enter{from{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}to{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}}@keyframes van-right-enter{from{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}to{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}}@-webkit-keyframes van-right-leave{from{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}to{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}}@keyframes van-right-leave{from{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}to{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}} @import '../common/index.wxss';.van-popup{top:50%;left:50%;position:fixed;max-height:100%;overflow-y:auto;box-sizing:border-box;background-color:#fff;-webkit-overflow-scrolling:touch;-webkit-animation:ease both;animation:ease both}.van-popup--center{-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-popup--top{width:100%;top:0;right:auto;bottom:auto;left:50%}.van-popup--right{top:50%;right:0;bottom:auto;left:auto}.van-popup--bottom{width:100%;top:auto;bottom:0;right:auto;left:50%}.van-popup--left{top:50%;right:auto;bottom:auto;left:0}.van-popup--safe{padding-bottom:34px}@-webkit-keyframes van-center-enter{from{opacity:0}}@keyframes van-center-enter{from{opacity:0}}@-webkit-keyframes van-center-leave{to{opacity:0}}@keyframes van-center-leave{to{opacity:0}}@-webkit-keyframes van-scale-enter{from{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}}@keyframes van-scale-enter{from{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}}@-webkit-keyframes van-scale-leave{to{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}}@keyframes van-scale-leave{to{opacity:0;-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7)}}@-webkit-keyframes van-bottom-enter{from{-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}}@keyframes van-bottom-enter{from{-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}}@-webkit-keyframes van-bottom-leave{from{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}to{-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}}@keyframes van-bottom-leave{from{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}to{-webkit-transform:translate3d(-50%,100%,0);transform:translate3d(-50%,100%,0)}}@-webkit-keyframes van-top-enter{from{-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}}@keyframes van-top-enter{from{-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}to{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}}@-webkit-keyframes van-top-leave{from{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}to{-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}}@keyframes van-top-leave{from{-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}to{-webkit-transform:translate3d(-50%,-100%,0);transform:translate3d(-50%,-100%,0)}}@-webkit-keyframes van-left-enter{from{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}to{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}}@keyframes van-left-enter{from{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}to{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}}@-webkit-keyframes van-left-leave{from{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}to{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}}@keyframes van-left-leave{from{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}to{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}}@-webkit-keyframes van-right-enter{from{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}to{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}}@keyframes van-right-enter{from{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}to{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}}@-webkit-keyframes van-right-leave{from{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}to{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}}@keyframes van-right-leave{from{-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}to{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}}

View File

@ -53,12 +53,12 @@ VantComponent({
var _this = this; var _this = this;
this.getRect('.van-progress').then(function (rect) { this.getRect('.van-progress').then(function (rect) {
_this.setData({ _this.set({
progressWidth: rect.width progressWidth: rect.width
}); });
}); });
this.getRect('.van-progress__pivot').then(function (rect) { this.getRect('.van-progress__pivot').then(function (rect) {
_this.setData({ _this.set({
pivotWidth: rect.width || 0 pivotWidth: rect.width || 0
}); });
}); });

View File

@ -8,7 +8,7 @@ VantComponent({
var _this$data = this.data, var _this$data = this.data,
value = _this$data.value, value = _this$data.value,
disabled = _this$data.disabled; disabled = _this$data.disabled;
target.setData({ target.set({
value: value, value: value,
disabled: disabled || target.data.disabled disabled: disabled || target.data.disabled
}); });
@ -22,7 +22,7 @@ VantComponent({
value: function value(_value) { value: function value(_value) {
var children = this.getRelationNodes('../radio/index'); var children = this.getRelationNodes('../radio/index');
children.forEach(function (child) { children.forEach(function (child) {
child.setData({ child.set({
value: _value value: _value
}); });
}); });
@ -30,7 +30,7 @@ VantComponent({
disabled: function disabled(_disabled) { disabled: function disabled(_disabled) {
var children = this.getRelationNodes('../radio/index'); var children = this.getRelationNodes('../radio/index');
children.forEach(function (child) { children.forEach(function (child) {
child.setData({ child.set({
disabled: _disabled || child.data.disabled disabled: _disabled || child.data.disabled
}); });
}); });

5
dist/rate/index.js vendored
View File

@ -3,6 +3,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
VantComponent({ VantComponent({
field: true, field: true,
classes: ['icon-class'],
props: { props: {
readonly: Boolean, readonly: Boolean,
disabled: Boolean, disabled: Boolean,
@ -45,7 +46,7 @@ VantComponent({
watch: { watch: {
value: function value(_value) { value: function value(_value) {
if (_value !== this.data.innerValue) { if (_value !== this.data.innerValue) {
this.setData({ this.set({
innerValue: _value innerValue: _value
}); });
} }
@ -69,7 +70,7 @@ VantComponent({
var index = event.currentTarget.dataset.index; var index = event.currentTarget.dataset.index;
if (!data.disabled && !data.readonly) { if (!data.disabled && !data.readonly) {
this.setData({ this.set({
innerValue: index + 1 innerValue: index + 1
}); });
this.$emit('input', index + 1); this.$emit('input', index + 1);

View File

@ -6,6 +6,7 @@
wx:for="{{ list }}" wx:for="{{ list }}"
wx:key="index" wx:key="index"
class="van-rate__item" class="van-rate__item"
custom-class="icon-class"
size="{{ size }}px" size="{{ size }}px"
data-index="{{ index }}" data-index="{{ index }}"
name="{{ item ? icon : voidIcon }}" name="{{ item ? icon : voidIcon }}"

2
dist/row/index.js vendored
View File

@ -27,7 +27,7 @@ VantComponent({
var gutter = this.data.gutter; var gutter = this.data.gutter;
var margin = "-" + Number(gutter) / 2 + "px"; var margin = "-" + Number(gutter) / 2 + "px";
var style = gutter ? "margin-right: " + margin + "; margin-left: " + margin + ";" : ''; var style = gutter ? "margin-right: " + margin + "; margin-left: " + margin + ";" : '';
this.setData({ this.set({
style: style style: style
}); });
this.getRelationNodes('../col/index').forEach(function (col) { this.getRelationNodes('../col/index').forEach(function (col) {

View File

@ -23,13 +23,13 @@ VantComponent({
}, },
methods: { methods: {
onChange: function onChange(event) { onChange: function onChange(event) {
this.setData({ this.set({
value: event.detail value: event.detail
}); });
this.$emit('change', event.detail); this.$emit('change', event.detail);
}, },
onCancel: function onCancel() { onCancel: function onCancel() {
this.setData({ this.set({
value: '' value: ''
}); });
this.$emit('cancel'); this.$emit('cancel');

View File

@ -66,7 +66,7 @@ VantComponent({
}, },
updateValue: function updateValue(value, end) { updateValue: function updateValue(value, end) {
value = this.format(value); value = this.format(value);
this.setData({ this.set({
value: value, value: value,
barStyle: "width: " + value + "%; height: " + this.data.barHeight + ";" barStyle: "width: " + value + "%; height: " + this.data.barHeight + ";"
}); });

12
dist/stepper/index.js vendored
View File

@ -6,6 +6,7 @@ VantComponent({
field: true, field: true,
classes: ['input-class', 'plus-class', 'minus-class'], classes: ['input-class', 'plus-class', 'minus-class'],
props: { props: {
value: Number,
integer: Boolean, integer: Boolean,
disabled: Boolean, disabled: Boolean,
disableInput: Boolean, disableInput: Boolean,
@ -30,8 +31,15 @@ VantComponent({
return this.data.disabled || this.data.value >= this.data.max; return this.data.disabled || this.data.value >= this.data.max;
} }
}, },
watch: {
value: function value(_value) {
this.set({
value: this.range(_value)
});
}
},
created: function created() { created: function created() {
this.setData({ this.set({
value: this.range(this.data.value) value: this.range(this.data.value)
}); });
}, },
@ -70,7 +78,7 @@ VantComponent({
this.onChange('plus'); this.onChange('plus');
}, },
triggerInput: function triggerInput(value) { triggerInput: function triggerInput(value) {
this.setData({ this.set({
value: value value: value
}); });
this.$emit('change', value); this.$emit('change', value);

2
dist/steps/index.js vendored
View File

@ -29,7 +29,7 @@ VantComponent({
steps.forEach(function (step, index) { steps.forEach(function (step, index) {
step.status = _this.getStatus(index); step.status = _this.getStatus(index);
}); });
this.setData({ this.set({
steps: steps steps: steps
}); });
}, },

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-steps{overflow:hidden;background-color:#fff}.van-steps--horizontal{padding:10px}.van-steps--horizontal .van-step__wrapper{position:relative;display:-webkit-flex;display:flex;overflow:hidden}.van-steps--vertical{padding-left:10px}.van-steps--vertical .van-step__wrapper{padding:0 0 0 20px}.van-step{position:relative;-webkit-flex:1;flex:1;font-size:14px;color:#999}.van-step--finish{color:#333}.van-step__circle{width:5px;height:5px;border-radius:50%;background-color:#999}.van-step--horizontal{padding-bottom:14px}.van-step--horizontal:first-child .van-step__title{-webkit-transform:none;transform:none}.van-step--horizontal:first-child .van-step__circle-container{padding:0 8px 0 0;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal:last-child{position:absolute;right:0;width:auto}.van-step--horizontal:last-child .van-step__title{-webkit-transform:none;transform:none;text-align:right}.van-step--horizontal:last-child .van-step__circle-container{right:0;padding:0 0 0 8px;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal .van-step__circle-container{position:absolute;bottom:6px;z-index:1;padding:0 8px;background-color:#fff;-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0)}.van-step--horizontal .van-step__title{display:inline-block;font-size:12px;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.van-step--horizontal .van-step__line{position:absolute;left:0;right:0;bottom:6px;height:1px;background-color:#eee;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal.van-step--process{color:#333}.van-step--horizontal.van-step--process .van-step__active{display:block;font-size:12px;color:#4b0;line-height:1}.van-step--vertical{font-size:14px;line-height:18px;padding:10px 10px 10px 0}.van-step--vertical:not(:last-child)::after{border-bottom-width:1px}.van-step--vertical:first-child::before{content:'';position:absolute;width:1px;height:20px;background-color:#fff;top:0;left:-15px;z-index:1}.van-step--vertical .van-step__active,.van-step--vertical .van-step__circle,.van-step--vertical .van-step__line{position:absolute;top:19px;left:-14px;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-step--vertical .van-step__active{font-size:12px;line-height:1}.van-step--vertical .van-step__line{z-index:1;width:1px;height:100%;background-color:#eee;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)} @import '../common/index.wxss';.van-steps{overflow:hidden;background-color:#fff}.van-steps--horizontal{padding:10px}.van-steps--horizontal .van-step__wrapper{position:relative;display:-webkit-flex;display:flex;overflow:hidden}.van-steps--vertical{padding-left:10px}.van-steps--vertical .van-step__wrapper{padding:0 0 0 20px}.van-step{position:relative;-webkit-flex:1;flex:1;font-size:14px;color:#999}.van-step--finish{color:#333}.van-step__circle{width:5px;height:5px;border-radius:50%;background-color:#999}.van-step--horizontal{padding-bottom:14px}.van-step--horizontal:first-child .van-step__title{-webkit-transform:none;transform:none}.van-step--horizontal:first-child .van-step__circle-container{padding:0 8px 0 0;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal:last-child{position:absolute;right:0;width:auto}.van-step--horizontal:last-child .van-step__title{-webkit-transform:none;transform:none;text-align:right}.van-step--horizontal:last-child .van-step__circle-container{right:0;padding:0 0 0 8px;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal .van-step__circle-container{position:absolute;bottom:6px;z-index:1;padding:0 8px;background-color:#fff;-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0)}.van-step--horizontal .van-step__title{display:inline-block;font-size:12px;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.van-step--horizontal .van-step__line{position:absolute;left:0;right:0;bottom:6px;height:1px;background-color:#eee;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal.van-step--process{color:#333}.van-step--horizontal.van-step--process .van-step__active{display:block;font-size:12px;color:#4b0;line-height:1}.van-step--vertical{font-size:14px;line-height:18px;padding:10px 10px 10px 0}.van-step--vertical::after{border-bottom-width:1px}.van-step--vertical:last-child::after{border-bottom-width:none}.van-step--vertical:first-child::before{content:'';position:absolute;width:1px;height:20px;background-color:#fff;top:0;left:-15px;z-index:1}.van-step--vertical .van-step__active,.van-step--vertical .van-step__circle,.van-step--vertical .van-step__line{position:absolute;top:19px;left:-14px;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-step--vertical .van-step__active{font-size:12px;line-height:1}.van-step--vertical .van-step__line{z-index:1;width:1px;height:100%;background-color:#eee;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}

View File

@ -16,6 +16,10 @@ VantComponent({
buttonType: { buttonType: {
type: String, type: String,
value: 'danger' value: 'danger'
},
safeAreaInsetBottom: {
type: Boolean,
value: true
} }
}, },
computed: { computed: {
@ -28,6 +32,14 @@ VantComponent({
tipStr: function tipStr() { tipStr: function tipStr() {
var tip = this.data.tip; var tip = this.data.tip;
return typeof tip === 'string' ? tip : ''; return typeof tip === 'string' ? tip : '';
},
barClass: function barClass() {
var _this$data = this.data,
isIPhoneX = _this$data.isIPhoneX,
safeAreaInsetBottom = _this$data.safeAreaInsetBottom;
return this.classNames('van-submit-bar__bar', 'bar-class', {
'van-submit-bar__bar--safe': safeAreaInsetBottom && isIPhoneX
});
} }
}, },
methods: { methods: {

View File

@ -5,7 +5,7 @@
{{ tipStr }}<slot name="tip" /> {{ tipStr }}<slot name="tip" />
</view> </view>
<view class="van-submit-bar__bar bar-class"> <view class="{{ barClass }}">
<slot /> <slot />
<view class="van-submit-bar__text"> <view class="van-submit-bar__text">
<block wx:if="{{ hasPrice }}"> <block wx:if="{{ hasPrice }}">

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-submit-bar{z-index:100;position:fixed;bottom:0;left:0;width:100%;-webkit-user-select:none;user-select:none}.van-submit-bar__tip{padding:10px;color:#f56723;font-size:12px;line-height:18px;background-color:#fff7cc}.van-submit-bar__bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:50px;background-color:#fff;font-size:14px}.van-submit-bar__text{-webkit-flex:1;flex:1;color:#333;font-weight:500;text-align:right}.van-submit-bar__price{color:#f44;font-size:18px;padding-right:12px}.van-submit-bar__currency{font-size:14px}.van-submit-bar__button button{width:110px} @import '../common/index.wxss';.van-submit-bar{z-index:100;position:fixed;bottom:0;left:0;width:100%;-webkit-user-select:none;user-select:none}.van-submit-bar__tip{padding:10px;color:#f56723;font-size:12px;line-height:18px;background-color:#fff7cc}.van-submit-bar__bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:50px;background-color:#fff;font-size:14px}.van-submit-bar__bar--safe{padding-bottom:34px}.van-submit-bar__text{-webkit-flex:1;flex:1;color:#333;font-weight:500;text-align:right}.van-submit-bar__price{color:#f44;font-size:18px;padding-right:12px}.van-submit-bar__currency{font-size:14px}.van-submit-bar__button button{width:110px}

View File

@ -42,7 +42,7 @@ VantComponent({
this.resetSwipeStatus(); this.resetSwipeStatus();
}, },
close: function close() { close: function close() {
this.setData({ this.set({
offset: 0 offset: 0
}); });
}, },
@ -55,7 +55,7 @@ VantComponent({
offset = 0; offset = 0;
} }
this.setData({ this.set({
offset: offset offset: offset
}); });
offset && (this.swiping = true); offset && (this.swiping = true);
@ -81,7 +81,7 @@ VantComponent({
return; return;
} }
this.setData({ this.set({
draging: true draging: true
}); });
this.touchStart(event); this.touchStart(event);
@ -114,7 +114,7 @@ VantComponent({
return; return;
} }
this.setData({ this.set({
draging: false draging: false
}); });

View File

@ -14,13 +14,13 @@ VantComponent({
}, },
watch: { watch: {
checked: function checked(value) { checked: function checked(value) {
this.setData({ this.set({
value: value value: value
}); });
} }
}, },
created: function created() { created: function created() {
this.setData({ this.set({
value: this.data.checked value: this.data.checked
}); });
}, },

View File

@ -15,7 +15,7 @@ VantComponent({
}, },
watch: { watch: {
checked: function checked(value) { checked: function checked(value) {
this.setData({ this.set({
value: value value: value
}); });
} }
@ -33,7 +33,7 @@ VantComponent({
} }
}, },
created: function created() { created: function created() {
this.setData({ this.set({
value: this.data.checked value: this.data.checked
}); });
}, },

View File

@ -24,7 +24,7 @@ VantComponent({
}, },
setActive: function setActive(active) { setActive: function setActive(active) {
if (this.data.active !== active) { if (this.data.active !== active) {
this.setData({ this.set({
active: active active: active
}); });
} }

22
dist/tabbar/index.js vendored
View File

@ -31,22 +31,38 @@ VantComponent({
zIndex: { zIndex: {
type: Number, type: Number,
value: 1 value: 1
},
safeAreaInsetBottom: {
type: Boolean,
value: true
} }
}, },
data: { data: {
items: [], items: [],
currentActive: -1 currentActive: -1
}, },
computed: {
tabbarClass: function tabbarClass() {
var _this$data = this.data,
fixed = _this$data.fixed,
isIPhoneX = _this$data.isIPhoneX,
safeAreaInsetBottom = _this$data.safeAreaInsetBottom;
return this.classNames('custom-class', 'van-tabbar', 'van-hairline--top-bottom', {
'van-tabbar--fixed': fixed,
'van-tabbar--safe': isIPhoneX && safeAreaInsetBottom
});
}
},
watch: { watch: {
active: function active(_active) { active: function active(_active) {
this.setData({ this.set({
currentActive: _active currentActive: _active
}); });
this.setActiveItem(); this.setActiveItem();
} }
}, },
created: function created() { created: function created() {
this.setData({ this.set({
currentActive: this.data.active currentActive: this.data.active
}); });
}, },
@ -63,7 +79,7 @@ VantComponent({
if (active !== this.data.currentActive && active !== -1) { if (active !== this.data.currentActive && active !== -1) {
this.$emit('change', active); this.$emit('change', active);
this.setData({ this.set({
currentActive: active currentActive: active
}); });
this.setActiveItem(); this.setActiveItem();

View File

@ -1,5 +1,5 @@
<view <view
class="custom-class van-tabbar van-hairline--top-bottom {{ fixed ? 'van-tabbar--fixed' : '' }}" class="{{ tabbarClass }}"
style="{{ zIndex ? 'z-index: ' + zIndex : '' }}" style="{{ zIndex ? 'z-index: ' + zIndex : '' }}"
> >
<slot /> <slot />

View File

@ -1 +1 @@
@import '../common/index.wxss';.van-tabbar{width:100%;height:50px;display:-webkit-flex;display:flex;background-color:#fff}.van-tabbar--fixed{left:0;bottom:0;position:fixed} @import '../common/index.wxss';.van-tabbar{display:-webkit-flex;display:flex;width:100%;height:50px;background-color:#fff}.van-tabbar--fixed{position:fixed;bottom:0;left:0}.van-tabbar--safe{padding-bottom:34px}

127
dist/tabs/index.js vendored
View File

@ -1,5 +1,7 @@
import { VantComponent } from '../common/component'; import { VantComponent } from '../common/component';
import { touch } from '../mixins/touch';
VantComponent({ VantComponent({
mixins: [touch],
relation: { relation: {
name: 'tab', name: 'tab',
type: 'descendant', type: 'descendant',
@ -45,25 +47,39 @@ VantComponent({
type: Number, type: Number,
value: 4 value: 4
}, },
animated: Boolean animated: Boolean,
sticky: Boolean,
offsetTop: {
type: Number,
value: 0
},
swipeable: Boolean,
scrollTop: {
type: Number,
value: 0
}
}, },
data: { data: {
tabs: [], tabs: [],
lineStyle: '', lineStyle: '',
scrollLeft: 0, scrollLeft: 0,
scrollable: false, scrollable: false,
trackStyle: '' trackStyle: '',
wrapStyle: '',
position: ''
}, },
watch: { watch: {
swipeThreshold: function swipeThreshold() { swipeThreshold: function swipeThreshold() {
this.setData({ this.set({
scrollable: this.child.length > this.data.swipeThreshold scrollable: this.child.length > this.data.swipeThreshold
}); });
}, },
color: 'setLine', color: 'setLine',
lineWidth: 'setLine', lineWidth: 'setLine',
active: 'setActiveTab', active: 'setActiveTab',
animated: 'setTrack' animated: 'setTrack',
scrollTop: 'onScroll',
offsetTop: 'setWrapStyle'
}, },
beforeCreate: function beforeCreate() { beforeCreate: function beforeCreate() {
this.child = []; this.child = [];
@ -76,7 +92,7 @@ VantComponent({
methods: { methods: {
updateTabs: function updateTabs(tabs) { updateTabs: function updateTabs(tabs) {
tabs = tabs || this.data.tabs; tabs = tabs || this.data.tabs;
this.setData({ this.set({
tabs: tabs, tabs: tabs,
scrollable: tabs.length > this.data.swipeThreshold scrollable: tabs.length > this.data.swipeThreshold
}); });
@ -101,7 +117,7 @@ VantComponent({
setActive: function setActive(active) { setActive: function setActive(active) {
if (active !== this.data.active) { if (active !== this.data.active) {
this.trigger('change', active); this.trigger('change', active);
this.setData({ this.set({
active: active active: active
}); });
this.setActiveTab(); this.setActiveTab();
@ -127,7 +143,7 @@ VantComponent({
}, 0); }, 0);
left += (rect.width - width) / 2; left += (rect.width - width) / 2;
_this.setData({ _this.set({
lineStyle: "\n width: " + width + "px;\n background-color: " + color + ";\n -webkit-transform: translateX(" + left + "px);\n -webkit-transition-duration: " + duration + "s;\n transform: translateX(" + left + "px);\n transition-duration: " + duration + "s;\n " lineStyle: "\n width: " + width + "px;\n background-color: " + color + ";\n -webkit-transform: translateX(" + left + "px);\n -webkit-transition-duration: " + duration + "s;\n transform: translateX(" + left + "px);\n transition-duration: " + duration + "s;\n "
}); });
}); });
@ -143,7 +159,7 @@ VantComponent({
this.getRect('.van-tabs__content').then(function (rect) { this.getRect('.van-tabs__content').then(function (rect) {
var width = rect.width; var width = rect.width;
_this2.setData({ _this2.set({
trackStyle: "\n width: " + width * _this2.child.length + "px;\n transform: translateX(" + -1 * active * width + "px);\n transition-duration: " + duration + "s;\n " trackStyle: "\n width: " + width * _this2.child.length + "px;\n transform: translateX(" + -1 * active * width + "px);\n transition-duration: " + duration + "s;\n "
}); });
@ -155,7 +171,7 @@ VantComponent({
}, },
setTabsProps: function setTabsProps(props) { setTabsProps: function setTabsProps(props) {
this.child.forEach(function (item) { this.child.forEach(function (item) {
item.setData(props); item.set(props);
}); });
}, },
setActiveTab: function setActiveTab() { setActiveTab: function setActiveTab() {
@ -171,10 +187,10 @@ VantComponent({
} }
if (data.active !== item.data.active) { if (data.active !== item.data.active) {
item.setData(data); item.set(data);
} }
}); });
this.setData({}, function () { this.set({}, function () {
_this3.setLine(); _this3.setLine();
_this3.setTrack(); _this3.setTrack();
@ -200,11 +216,98 @@ VantComponent({
_this4.getRect('.van-tabs__nav').then(function (navRect) { _this4.getRect('.van-tabs__nav').then(function (navRect) {
var navWidth = navRect.width; var navWidth = navRect.width;
_this4.setData({ _this4.set({
scrollLeft: offsetLeft - (navWidth - tabWidth) / 2 scrollLeft: offsetLeft - (navWidth - tabWidth) / 2
}); });
}); });
}); });
},
onTouchStart: function onTouchStart(event) {
if (!this.data.swipeable) return;
this.touchStart(event);
},
onTouchMove: function onTouchMove(event) {
if (!this.data.swipeable) return;
this.touchMove(event);
},
// watch swipe touch end
onTouchEnd: function onTouchEnd() {
if (!this.data.swipeable) return;
var _this$data3 = this.data,
active = _this$data3.active,
tabs = _this$data3.tabs;
var direction = this.direction,
deltaX = this.deltaX,
offsetX = this.offsetX;
var minSwipeDistance = 50;
if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
if (deltaX > 0 && active !== 0) {
this.setActive(active - 1);
} else if (deltaX < 0 && active !== tabs.length - 1) {
this.setActive(active + 1);
}
}
},
setWrapStyle: function setWrapStyle() {
var _this$data4 = this.data,
offsetTop = _this$data4.offsetTop,
position = _this$data4.position;
var wrapStyle;
switch (position) {
case 'top':
wrapStyle = "\n top: " + offsetTop + "px;\n position: fixed;\n ";
break;
case 'bottom':
wrapStyle = "\n top: auto;\n bottom: 0;\n ";
break;
default:
wrapStyle = '';
} // cut down `set`
if (wrapStyle === this.data.wrapStyle) return;
this.set({
wrapStyle: wrapStyle
});
},
// adjust tab position
onScroll: function onScroll(scrollTop) {
var _this5 = this;
if (!this.data.sticky) return;
var offsetTop = this.data.offsetTop;
this.getRect('.van-tabs').then(function (rect) {
var top = rect.top,
height = rect.height;
_this5.getRect('.van-tabs__wrap').then(function (rect) {
var wrapHeight = rect.height;
var position = '';
if (offsetTop > top + height - wrapHeight) {
position = 'bottom';
} else if (offsetTop > top) {
position = 'top';
}
_this5.$emit('scroll', {
scrollTop: scrollTop + offsetTop,
isFixed: position === 'top'
});
if (position !== _this5.data.position) {
_this5.set({
position: position
}, function () {
_this5.setWrapStyle();
});
}
});
});
} }
} }
}); });

14
dist/tabs/index.wxml vendored
View File

@ -1,5 +1,5 @@
<view class="custom-class van-tabs van-tabs--{{ type }}"> <view class="custom-class van-tabs van-tabs--{{ type }}">
<view style="z-index: {{ zIndex }}" class="van-tabs__wrap {{ scrollable ? 'van-tabs__wrap--scrollable' : '' }} {{ type === 'line' && border ? 'van-hairline--top-bottom' : '' }}"> <view style="z-index: {{ zIndex }}; {{ wrapStyle }}" class="van-tabs__wrap {{ scrollable ? 'van-tabs__wrap--scrollable' : '' }} {{ type === 'line' && border ? 'van-hairline--top-bottom' : '' }}">
<scroll-view <scroll-view
scroll-x="{{ scrollable }}" scroll-x="{{ scrollable }}"
scroll-with-animation scroll-with-animation
@ -17,12 +17,20 @@
style="{{ color && index !== active && type === 'card' && !item.disabled ? 'color: ' + color : '' }} {{ color && index === active && type === 'card' ? ';background-color:' + color : '' }} {{ color ? ';border-color: ' + color : '' }} {{ scrollable ? ';flex-basis:' + (88 / swipeThreshold) + '%' : '' }}" style="{{ color && index !== active && type === 'card' && !item.disabled ? 'color: ' + color : '' }} {{ color && index === active && type === 'card' ? ';background-color:' + color : '' }} {{ color ? ';border-color: ' + color : '' }} {{ scrollable ? ';flex-basis:' + (88 / swipeThreshold) + '%' : '' }}"
bind:tap="onTap" bind:tap="onTap"
> >
{{ item.title }} <view class="van-ellipsis van-tab__title">
{{ item.title }}
</view>
</view> </view>
</view> </view>
</scroll-view> </scroll-view>
</view> </view>
<view class="van-tabs__content"> <view
class="van-tabs__content"
bind:touchstart="onTouchStart"
bind:touchmove="onTouchMove"
bind:touchend="onTouchEnd"
bind:touchcancel="onTouchEnd"
>
<view class="van-tabs__track" style="{{ trackStyle }}"> <view class="van-tabs__track" style="{{ trackStyle }}">
<slot /> <slot />
</view> </view>

2
dist/toast/index.js vendored
View File

@ -24,7 +24,7 @@ VantComponent({
}, },
methods: { methods: {
clear: function clear() { clear: function clear() {
this.setData({ this.set({
show: false show: false
}); });
}, },

2
dist/toast/toast.js vendored
View File

@ -45,7 +45,7 @@ var Toast = function Toast(options) {
delete options.context; delete options.context;
delete options.selector; delete options.selector;
queue.push(toast); queue.push(toast);
toast.setData(options); toast.set(options);
clearTimeout(toast.timer); clearTimeout(toast.timer);
if (options.duration > 0) { if (options.duration > 0) {

View File

@ -1,7 +1,7 @@
<view <view
wx:if="{{ inited }}" wx:if="{{ inited }}"
class="van-transition custom-class" class="van-transition custom-class"
style="animation-name: van-{{ name }}-{{ type }}; animation-duration: {{ duration }}ms; {{ display ? '' : 'display: none;' }} {{ customStyle }}" style="-webkit-animation: van-{{ name }}-{{ type }} {{ duration }}ms both; animation: van-{{ name }}-{{ type }} {{ duration }}ms both; {{ display ? '' : 'display: none;' }} {{ customStyle }}"
bind:animationend="onAnimationEnd" bind:animationend="onAnimationEnd"
> >
<slot /> <slot />

View File

@ -51,7 +51,7 @@ VantComponent({
// 更新子项列表 // 更新子项列表
updateSubItems: function updateSubItems() { updateSubItems: function updateSubItems() {
var selectedItem = this.data.items[this.data.mainActiveIndex] || {}; var selectedItem = this.data.items[this.data.mainActiveIndex] || {};
this.setData({ this.set({
subItems: selectedItem.children || [] subItems: selectedItem.children || []
}); });
this.updateItemHeight(); this.updateItemHeight();
@ -59,13 +59,13 @@ VantComponent({
// 更新组件整体高度,根据最大高度和当前组件需要展示的高度来决定 // 更新组件整体高度,根据最大高度和当前组件需要展示的高度来决定
updateMainHeight: function updateMainHeight() { updateMainHeight: function updateMainHeight() {
var maxHeight = Math.max(this.data.items.length * ITEM_HEIGHT, this.data.subItems.length * ITEM_HEIGHT); var maxHeight = Math.max(this.data.items.length * ITEM_HEIGHT, this.data.subItems.length * ITEM_HEIGHT);
this.setData({ this.set({
mainHeight: Math.min(maxHeight, this.data.maxHeight) mainHeight: Math.min(maxHeight, this.data.maxHeight)
}); });
}, },
// 更新子项列表高度,根据可展示的最大高度和当前子项列表的高度决定 // 更新子项列表高度,根据可展示的最大高度和当前子项列表的高度决定
updateItemHeight: function updateItemHeight() { updateItemHeight: function updateItemHeight() {
this.setData({ this.set({
itemHeight: Math.min(this.data.subItems.length * ITEM_HEIGHT, this.data.maxHeight) itemHeight: Math.min(this.data.subItems.length * ITEM_HEIGHT, this.data.maxHeight)
}); });
} }