mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] not proxy setData (#1023)
This commit is contained in:
parent
e1b68de7fc
commit
d7fc30fed7
@ -139,7 +139,7 @@ VantComponent({
|
|||||||
const province = this.getList('province');
|
const province = this.getList('province');
|
||||||
const city = this.getList('city', code.slice(0, 2));
|
const city = this.getList('city', code.slice(0, 2));
|
||||||
|
|
||||||
this.setData({
|
this.set({
|
||||||
'columns[0]': province,
|
'columns[0]': province,
|
||||||
'columns[1]': city
|
'columns[1]': city
|
||||||
});
|
});
|
||||||
@ -148,7 +148,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: [
|
pickerValue: [
|
||||||
this.getIndex('province', code),
|
this.getIndex('province', code),
|
||||||
|
@ -20,7 +20,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
setActive(active: boolean) {
|
setActive(active: boolean) {
|
||||||
this.setData({ active });
|
this.set({ active });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -8,7 +8,7 @@ VantComponent({
|
|||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked(target: Weapp.Component) {
|
linked(target: Weapp.Component) {
|
||||||
const { value, disabled } = this.data;
|
const { value, disabled } = this.data;
|
||||||
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
|
||||||
});
|
});
|
||||||
@ -25,14 +25,14 @@ VantComponent({
|
|||||||
value(value) {
|
value(value) {
|
||||||
const children = this.getRelationNodes('../checkbox/index');
|
const children = this.getRelationNodes('../checkbox/index');
|
||||||
children.forEach(child => {
|
children.forEach(child => {
|
||||||
child.setData({ value: value.indexOf(child.data.name) !== -1 });
|
child.set({ value: value.indexOf(child.data.name) !== -1 });
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
disabled(disabled: boolean) {
|
disabled(disabled: boolean) {
|
||||||
const children = this.getRelationNodes('../checkbox/index');
|
const children = this.getRelationNodes('../checkbox/index');
|
||||||
children.forEach(child => {
|
children.forEach(child => {
|
||||||
child.setData({ disabled: disabled || child.data.disabled });
|
child.set({ disabled: disabled || child.data.disabled });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,7 @@ VantComponent({
|
|||||||
const padding = `${gutter / 2}px`;
|
const padding = `${gutter / 2}px`;
|
||||||
const style = gutter ? `padding-left: ${padding}; padding-right: ${padding};` : '';
|
const style = gutter ? `padding-left: ${padding}; padding-right: ${padding};` : '';
|
||||||
if (style !== this.data.style) {
|
if (style !== this.data.style) {
|
||||||
this.setData({ style });
|
this.set({ style });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,18 +63,18 @@ VantComponent({
|
|||||||
this.updateStyle(expanded);
|
this.updateStyle(expanded);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setData({ expanded });
|
this.set({ expanded });
|
||||||
},
|
},
|
||||||
|
|
||||||
updateStyle(expanded) {
|
updateStyle(expanded) {
|
||||||
if (expanded) {
|
if (expanded) {
|
||||||
this.getRect('.van-collapse-item__content').then(res => {
|
this.getRect('.van-collapse-item__content').then(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
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ VantComponent({
|
|||||||
name: 'collapse-item',
|
name: 'collapse-item',
|
||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked(child: Weapp.Component) {
|
linked(child: Weapp.Component) {
|
||||||
this.setData({
|
this.set({
|
||||||
items: [...this.data.items, child]
|
items: [...this.data.items, child]
|
||||||
}, () => {
|
}, () => {
|
||||||
child.updateExpanded();
|
child.updateExpanded();
|
||||||
|
@ -90,7 +90,7 @@ VantComponent({
|
|||||||
val = this.correctValue(val);
|
val = this.correctValue(val);
|
||||||
const isEqual = val === data.innerValue;
|
const isEqual = val === data.innerValue;
|
||||||
if (!isEqual) {
|
if (!isEqual) {
|
||||||
this.setData({ innerValue: val }, () => {
|
this.set({ innerValue: val }, () => {
|
||||||
this.updateColumnValue(val);
|
this.updateColumnValue(val);
|
||||||
this.$emit('input', val);
|
this.$emit('input', val);
|
||||||
});
|
});
|
||||||
@ -273,7 +273,7 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
value = this.correctValue(value);
|
value = this.correctValue(value);
|
||||||
|
|
||||||
this.setData({ innerValue: value }, () => {
|
this.set({ innerValue: value }, () => {
|
||||||
this.updateColumnValue(value);
|
this.updateColumnValue(value);
|
||||||
this.$emit('input', value);
|
this.$emit('input', value);
|
||||||
this.$emit('change', this);
|
this.$emit('change', this);
|
||||||
@ -287,7 +287,7 @@ VantComponent({
|
|||||||
setColumnValue(index, value) {
|
setColumnValue(index, value) {
|
||||||
const { pickerValue, columns } = this.data;
|
const { pickerValue, columns } = this.data;
|
||||||
pickerValue[index] = columns[index].indexOf(value);
|
pickerValue[index] = columns[index].indexOf(value);
|
||||||
this.setData({ pickerValue });
|
this.set({ pickerValue });
|
||||||
},
|
},
|
||||||
|
|
||||||
getColumnValues(index) {
|
getColumnValues(index) {
|
||||||
@ -297,7 +297,7 @@ VantComponent({
|
|||||||
setColumnValues(index, values) {
|
setColumnValues(index, values) {
|
||||||
const { columns } = this.data;
|
const { columns } = this.data;
|
||||||
columns[index] = values;
|
columns[index] = values;
|
||||||
this.setData({ columns });
|
this.set({ columns });
|
||||||
},
|
},
|
||||||
|
|
||||||
getValues() {
|
getValues() {
|
||||||
@ -307,7 +307,7 @@ VantComponent({
|
|||||||
|
|
||||||
setValues(values) {
|
setValues(values) {
|
||||||
const { columns } = this.data;
|
const { columns } = this.data;
|
||||||
this.setData({
|
this.set({
|
||||||
pickerValue: values.map((value, index) => columns[index].indexOf(value))
|
pickerValue: values.map((value, index) => columns[index].indexOf(value))
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -341,13 +341,13 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setData({ pickerValue: values });
|
this.set({ pickerValue: values });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
const innerValue = this.correctValue(this.data.value);
|
const innerValue = this.correctValue(this.data.value);
|
||||||
this.setData({ innerValue }, () => {
|
this.set({ innerValue }, () => {
|
||||||
this.updateColumnValue(innerValue);
|
this.updateColumnValue(innerValue);
|
||||||
this.$emit('input', innerValue);
|
this.$emit('input', innerValue);
|
||||||
});
|
});
|
||||||
|
@ -49,7 +49,7 @@ const Dialog: Dialog = options => {
|
|||||||
delete options.selector;
|
delete options.selector;
|
||||||
|
|
||||||
if (dialog) {
|
if (dialog) {
|
||||||
dialog.setData({
|
dialog.set({
|
||||||
onCancel: reject,
|
onCancel: reject,
|
||||||
onConfirm: resolve,
|
onConfirm: resolve,
|
||||||
...options
|
...options
|
||||||
|
@ -67,7 +67,7 @@ VantComponent({
|
|||||||
|
|
||||||
handleAction(action) {
|
handleAction(action) {
|
||||||
if (this.data.asyncClose) {
|
if (this.data.asyncClose) {
|
||||||
this.setData({
|
this.set({
|
||||||
[`loading.${action}`]: true
|
[`loading.${action}`]: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -76,13 +76,13 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
close() {
|
close() {
|
||||||
this.setData({
|
this.set({
|
||||||
show: false
|
show: false
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
stopLoading() {
|
stopLoading() {
|
||||||
this.setData({
|
this.set({
|
||||||
loading: {
|
loading: {
|
||||||
confirm: false,
|
confirm: false,
|
||||||
cancel: false
|
cancel: false
|
||||||
|
@ -80,7 +80,7 @@ VantComponent({
|
|||||||
onInput(event: Weapp.Event) {
|
onInput(event: Weapp.Event) {
|
||||||
const { value = '' } = event.detail || {};
|
const { value = '' } = event.detail || {};
|
||||||
|
|
||||||
this.setData({
|
this.set({
|
||||||
value,
|
value,
|
||||||
showClear: this.getShowClear(value)
|
showClear: this.getShowClear(value)
|
||||||
}, () => {
|
}, () => {
|
||||||
@ -93,7 +93,7 @@ VantComponent({
|
|||||||
const { value = '', height = 0 } = event.detail || {};
|
const { value = '', height = 0 } = event.detail || {};
|
||||||
this.$emit('focus', { value, height });
|
this.$emit('focus', { value, height });
|
||||||
this.focused = true;
|
this.focused = true;
|
||||||
this.setData({
|
this.set({
|
||||||
showClear: this.getShowClear()
|
showClear: this.getShowClear()
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -102,7 +102,7 @@ VantComponent({
|
|||||||
const { value = '', cursor = 0 } = event.detail || {};
|
const { value = '', cursor = 0 } = event.detail || {};
|
||||||
this.$emit('blur', { value, cursor });
|
this.$emit('blur', { value, cursor });
|
||||||
this.focused = false;
|
this.focused = false;
|
||||||
this.setData({
|
this.set({
|
||||||
showClear: this.getShowClear()
|
showClear: this.getShowClear()
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -119,7 +119,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
onClear() {
|
onClear() {
|
||||||
this.setData({
|
this.set({
|
||||||
value: '',
|
value: '',
|
||||||
showClear: this.getShowClear('')
|
showClear: this.getShowClear('')
|
||||||
}, () => {
|
}, () => {
|
||||||
|
@ -8,7 +8,7 @@ export const basic = Behavior({
|
|||||||
const isIphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
|
const isIphoneNew = /iPhone11/i.test(model) && screenHeight === 812;
|
||||||
|
|
||||||
if (isIphoneX || isIphoneNew) {
|
if (isIphoneX || isIphoneNew) {
|
||||||
this.setData({
|
this.set({
|
||||||
isIPhoneX: true
|
isIPhoneX: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -5,11 +5,10 @@ export const behavior = Behavior({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const cache = {};
|
const cache = {};
|
||||||
const { setData } = this;
|
|
||||||
const { computed } = this.$options();
|
const { computed } = this.$options();
|
||||||
const keys = Object.keys(computed);
|
const keys = Object.keys(computed);
|
||||||
|
|
||||||
const calcComputed = () => {
|
this.calcComputed = () => {
|
||||||
const needUpdate = {};
|
const needUpdate = {};
|
||||||
keys.forEach(key => {
|
keys.forEach(key => {
|
||||||
const value = computed[key].call(this);
|
const value = computed[key].call(this);
|
||||||
@ -21,16 +20,22 @@ export const behavior = Behavior({
|
|||||||
|
|
||||||
return needUpdate;
|
return needUpdate;
|
||||||
};
|
};
|
||||||
|
|
||||||
Object.defineProperty(this, 'setData', { writable: true });
|
|
||||||
|
|
||||||
this.setData = (data, callback) => {
|
|
||||||
data && setData.call(this, data, callback);
|
|
||||||
setData.call(this, calcComputed());
|
|
||||||
};
|
|
||||||
},
|
},
|
||||||
|
|
||||||
attached() {
|
attached() {
|
||||||
this.setData();
|
this.set();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// set data and set computed data
|
||||||
|
set(data, callback) {
|
||||||
|
if (data) {
|
||||||
|
this.setData(data, callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.calcComputed) {
|
||||||
|
this.setData(this.calcComputed());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -4,6 +4,8 @@ import { observeProps } from './props';
|
|||||||
export function observe(vantOptions, options) {
|
export function observe(vantOptions, options) {
|
||||||
const { watch, computed } = vantOptions;
|
const { watch, computed } = vantOptions;
|
||||||
|
|
||||||
|
options.behaviors.push(behavior);
|
||||||
|
|
||||||
if (watch) {
|
if (watch) {
|
||||||
const props = options.properties || {};
|
const props = options.properties || {};
|
||||||
Object.keys(watch).forEach(key => {
|
Object.keys(watch).forEach(key => {
|
||||||
@ -21,7 +23,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 = () => vantOptions;
|
options.methods.$options = () => vantOptions;
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ export function observeProps(props) {
|
|||||||
}
|
}
|
||||||
observer.apply(this, arguments);
|
observer.apply(this, arguments);
|
||||||
}
|
}
|
||||||
this.setData();
|
this.set();
|
||||||
};
|
};
|
||||||
|
|
||||||
props[key] = prop;
|
props[key] = prop;
|
||||||
|
@ -30,14 +30,14 @@ export const transition = function(showDefaultValue) {
|
|||||||
if (value) {
|
if (value) {
|
||||||
this.show();
|
this.show();
|
||||||
} else {
|
} else {
|
||||||
this.setData({
|
this.set({
|
||||||
type: 'leave'
|
type: 'leave'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
show() {
|
show() {
|
||||||
this.setData({
|
this.set({
|
||||||
inited: true,
|
inited: true,
|
||||||
display: true,
|
display: true,
|
||||||
type: 'enter'
|
type: 'enter'
|
||||||
@ -46,7 +46,7 @@ export const transition = function(showDefaultValue) {
|
|||||||
|
|
||||||
onAnimationEnd() {
|
onAnimationEnd() {
|
||||||
if (!this.data.show) {
|
if (!this.data.show) {
|
||||||
this.setData({
|
this.set({
|
||||||
display: false
|
display: false
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -60,13 +60,13 @@ VantComponent({
|
|||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
text() {
|
text() {
|
||||||
this.setData({}, this.init);
|
this.set({}, this.init);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
if (this.data.mode) {
|
if (this.data.mode) {
|
||||||
this.setData({
|
this.set({
|
||||||
hasRightIcon: true
|
hasRightIcon: true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -83,7 +83,7 @@ VantComponent({
|
|||||||
if (!rect || !rect.width) {
|
if (!rect || !rect.width) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.setData({
|
this.set({
|
||||||
width: rect.width
|
width: rect.width
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -109,7 +109,7 @@ VantComponent({
|
|||||||
timeingFunction: 'linear'
|
timeingFunction: 'linear'
|
||||||
});
|
});
|
||||||
|
|
||||||
this.setData({
|
this.set({
|
||||||
elapse,
|
elapse,
|
||||||
wrapWidth,
|
wrapWidth,
|
||||||
animation,
|
animation,
|
||||||
@ -128,11 +128,11 @@ VantComponent({
|
|||||||
} = this.data;
|
} = this.data;
|
||||||
resetAnimation.translateX(wrapWidth).step();
|
resetAnimation.translateX(wrapWidth).step();
|
||||||
const animationData = animation.translateX(-(elapse * speed) / 1000).step();
|
const animationData = animation.translateX(-(elapse * speed) / 1000).step();
|
||||||
this.setData({
|
this.set({
|
||||||
animationData: resetAnimation.export()
|
animationData: resetAnimation.export()
|
||||||
});
|
});
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.setData({
|
this.set({
|
||||||
animationData: animationData.export()
|
animationData: animationData.export()
|
||||||
});
|
});
|
||||||
}, 100);
|
}, 100);
|
||||||
@ -141,7 +141,7 @@ VantComponent({
|
|||||||
this.scroll();
|
this.scroll();
|
||||||
}, elapse);
|
}, elapse);
|
||||||
|
|
||||||
this.setData({
|
this.set({
|
||||||
timer
|
timer
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -149,7 +149,7 @@ VantComponent({
|
|||||||
onClickIcon() {
|
onClickIcon() {
|
||||||
const { timer } = this.data;
|
const { timer } = this.data;
|
||||||
timer && clearTimeout(timer);
|
timer && clearTimeout(timer);
|
||||||
this.setData({
|
this.set({
|
||||||
show: false,
|
show: false,
|
||||||
timer: null
|
timer: null
|
||||||
});
|
});
|
||||||
|
@ -23,7 +23,7 @@ VantComponent({
|
|||||||
const { duration } = this.data;
|
const { duration } = this.data;
|
||||||
|
|
||||||
clearTimeout(this.timer);
|
clearTimeout(this.timer);
|
||||||
this.setData({
|
this.set({
|
||||||
show: true
|
show: true
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ VantComponent({
|
|||||||
|
|
||||||
hide() {
|
hide() {
|
||||||
clearTimeout(this.timer);
|
clearTimeout(this.timer);
|
||||||
this.setData({
|
this.set({
|
||||||
show: false
|
show: false
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ export default function Notify(options: NotifyOptions = {}) {
|
|||||||
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 是否正确');
|
||||||
|
@ -60,13 +60,13 @@ VantComponent({
|
|||||||
|
|
||||||
getWidth() {
|
getWidth() {
|
||||||
this.getRect('.van-progress').then(rect => {
|
this.getRect('.van-progress').then(rect => {
|
||||||
this.setData({
|
this.set({
|
||||||
progressWidth: rect.width
|
progressWidth: rect.width
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
this.getRect('.van-progress__pivot').then(rect => {
|
this.getRect('.van-progress__pivot').then(rect => {
|
||||||
this.setData({
|
this.set({
|
||||||
pivotWidth: rect.width || 0
|
pivotWidth: rect.width || 0
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -8,7 +8,7 @@ VantComponent({
|
|||||||
type: 'descendant',
|
type: 'descendant',
|
||||||
linked(target: Weapp.Component) {
|
linked(target: Weapp.Component) {
|
||||||
const { value, disabled } = this.data;
|
const { value, disabled } = this.data;
|
||||||
target.setData({
|
target.set({
|
||||||
value: value,
|
value: value,
|
||||||
disabled: disabled || target.data.disabled
|
disabled: disabled || target.data.disabled
|
||||||
});
|
});
|
||||||
@ -24,14 +24,14 @@ VantComponent({
|
|||||||
value(value) {
|
value(value) {
|
||||||
const children = this.getRelationNodes('../radio/index');
|
const children = this.getRelationNodes('../radio/index');
|
||||||
children.forEach(child => {
|
children.forEach(child => {
|
||||||
child.setData({ value });
|
child.set({ value });
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
disabled(disabled: boolean) {
|
disabled(disabled: boolean) {
|
||||||
const children = this.getRelationNodes('../radio/index');
|
const children = this.getRelationNodes('../radio/index');
|
||||||
children.forEach(child => {
|
children.forEach(child => {
|
||||||
child.setData({ disabled: disabled || child.data.disabled });
|
child.set({ disabled: disabled || child.data.disabled });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ VantComponent({
|
|||||||
watch: {
|
watch: {
|
||||||
value(value) {
|
value(value) {
|
||||||
if (value !== this.data.innerValue) {
|
if (value !== this.data.innerValue) {
|
||||||
this.setData({ innerValue: value });
|
this.set({ innerValue: value });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -64,7 +64,7 @@ VantComponent({
|
|||||||
const { data } = this;
|
const { data } = this;
|
||||||
const { index } = event.currentTarget.dataset;
|
const { index } = event.currentTarget.dataset;
|
||||||
if (!data.disabled && !data.readonly) {
|
if (!data.disabled && !data.readonly) {
|
||||||
this.setData({ innerValue: index + 1 });
|
this.set({ innerValue: index + 1 });
|
||||||
this.$emit('input', index + 1);
|
this.$emit('input', index + 1);
|
||||||
this.$emit('change', index + 1);
|
this.$emit('change', index + 1);
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ VantComponent({
|
|||||||
? `margin-right: ${margin}; margin-left: ${margin};`
|
? `margin-right: ${margin}; margin-left: ${margin};`
|
||||||
: '';
|
: '';
|
||||||
|
|
||||||
this.setData({ style });
|
this.set({ style });
|
||||||
this.getRelationNodes('../col/index').forEach(col => {
|
this.getRelationNodes('../col/index').forEach(col => {
|
||||||
col.setGutter(this.data.gutter);
|
col.setGutter(this.data.gutter);
|
||||||
});
|
});
|
||||||
|
@ -27,12 +27,12 @@ VantComponent({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onChange(event: Weapp.Event) {
|
onChange(event: Weapp.Event) {
|
||||||
this.setData({ value: event.detail });
|
this.set({ value: event.detail });
|
||||||
this.$emit('change', event.detail);
|
this.$emit('change', event.detail);
|
||||||
},
|
},
|
||||||
|
|
||||||
onCancel() {
|
onCancel() {
|
||||||
this.setData({ value: '' });
|
this.set({ value: '' });
|
||||||
this.$emit('cancel');
|
this.$emit('cancel');
|
||||||
this.$emit('change', '');
|
this.$emit('change', '');
|
||||||
},
|
},
|
||||||
|
@ -73,7 +73,7 @@ VantComponent({
|
|||||||
updateValue(value, end) {
|
updateValue(value, end) {
|
||||||
value = this.format(value);
|
value = this.format(value);
|
||||||
|
|
||||||
this.setData({
|
this.set({
|
||||||
value,
|
value,
|
||||||
barStyle: `width: ${value}%; height: ${this.data.barHeight};`
|
barStyle: `width: ${value}%; height: ${this.data.barHeight};`
|
||||||
});
|
});
|
||||||
|
@ -44,14 +44,14 @@ VantComponent({
|
|||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
value(value) {
|
value(value) {
|
||||||
this.setData({
|
this.set({
|
||||||
value: this.range(value)
|
value: this.range(value)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({
|
this.set({
|
||||||
value: this.range(this.data.value)
|
value: this.range(this.data.value)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -94,7 +94,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
triggerInput(value) {
|
triggerInput(value) {
|
||||||
this.setData({ value });
|
this.set({ value });
|
||||||
this.$emit('change', value);
|
this.$emit('change', value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ VantComponent({
|
|||||||
steps.forEach((step, index) => {
|
steps.forEach((step, index) => {
|
||||||
step.status = this.getStatus(index);
|
step.status = this.getStatus(index);
|
||||||
});
|
});
|
||||||
this.setData({ steps });
|
this.set({ steps });
|
||||||
},
|
},
|
||||||
|
|
||||||
getStatus(index) {
|
getStatus(index) {
|
||||||
|
@ -51,7 +51,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
close() {
|
close() {
|
||||||
this.setData({ offset: 0 });
|
this.set({ offset: 0 });
|
||||||
},
|
},
|
||||||
|
|
||||||
resetSwipeStatus() {
|
resetSwipeStatus() {
|
||||||
@ -60,7 +60,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
swipeMove(offset = 0) {
|
swipeMove(offset = 0) {
|
||||||
this.setData({ offset });
|
this.set({ offset });
|
||||||
offset && (this.swiping = true);
|
offset && (this.swiping = true);
|
||||||
!offset && (this.opened = false);
|
!offset && (this.opened = false);
|
||||||
},
|
},
|
||||||
@ -85,7 +85,7 @@ VantComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setData({ draging: true });
|
this.set({ draging: true });
|
||||||
this.touchStart(event);
|
this.touchStart(event);
|
||||||
|
|
||||||
if (this.opened) {
|
if (this.opened) {
|
||||||
@ -119,7 +119,7 @@ VantComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setData({ draging: false });
|
this.set({ draging: false });
|
||||||
if (this.swiping) {
|
if (this.swiping) {
|
||||||
this.swipeLeaveTransition(this.data.offset > 0 ? -1 : 1);
|
this.swipeLeaveTransition(this.data.offset > 0 ? -1 : 1);
|
||||||
}
|
}
|
||||||
|
@ -17,12 +17,12 @@ VantComponent({
|
|||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
checked(value) {
|
checked(value) {
|
||||||
this.setData({ value });
|
this.set({ value });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({ value: this.data.checked });
|
this.set({ value: this.data.checked });
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -19,7 +19,7 @@ VantComponent({
|
|||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
checked(value) {
|
checked(value) {
|
||||||
this.setData({ value });
|
this.set({ value });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({ value: this.data.checked });
|
this.set({ value: this.data.checked });
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -27,7 +27,7 @@ VantComponent({
|
|||||||
|
|
||||||
setActive(active) {
|
setActive(active) {
|
||||||
if (this.data.active !== active) {
|
if (this.data.active !== active) {
|
||||||
this.setData({ active });
|
this.set({ active });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -51,13 +51,13 @@ VantComponent({
|
|||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
active(active) {
|
active(active) {
|
||||||
this.setData({ currentActive: active });
|
this.set({ currentActive: active });
|
||||||
this.setActiveItem();
|
this.setActiveItem();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.setData({ currentActive: this.data.active });
|
this.set({ currentActive: this.data.active });
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
@ -71,7 +71,7 @@ VantComponent({
|
|||||||
const active = this.data.items.indexOf(child);
|
const active = this.data.items.indexOf(child);
|
||||||
if (active !== this.data.currentActive && active !== -1) {
|
if (active !== this.data.currentActive && active !== -1) {
|
||||||
this.$emit('change', active);
|
this.$emit('change', active);
|
||||||
this.setData({ currentActive: active });
|
this.set({ currentActive: active });
|
||||||
this.setActiveItem();
|
this.setActiveItem();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@ VantComponent({
|
|||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
swipeThreshold() {
|
swipeThreshold() {
|
||||||
this.setData({
|
this.set({
|
||||||
scrollable: this.child.length > this.data.swipeThreshold
|
scrollable: this.child.length > this.data.swipeThreshold
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -107,7 +107,7 @@ VantComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
updateTabs(tabs) {
|
updateTabs(tabs) {
|
||||||
tabs = tabs || this.data.tabs;
|
tabs = tabs || this.data.tabs;
|
||||||
this.setData({
|
this.set({
|
||||||
tabs,
|
tabs,
|
||||||
scrollable: tabs.length > this.data.swipeThreshold
|
scrollable: tabs.length > this.data.swipeThreshold
|
||||||
});
|
});
|
||||||
@ -134,7 +134,7 @@ VantComponent({
|
|||||||
setActive(active: number) {
|
setActive(active: number) {
|
||||||
if (active !== this.data.active) {
|
if (active !== this.data.active) {
|
||||||
this.trigger('change', active);
|
this.trigger('change', active);
|
||||||
this.setData({ active });
|
this.set({ active });
|
||||||
this.setActiveTab();
|
this.setActiveTab();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -161,7 +161,7 @@ VantComponent({
|
|||||||
|
|
||||||
left += (rect.width - width) / 2;
|
left += (rect.width - width) / 2;
|
||||||
|
|
||||||
this.setData({
|
this.set({
|
||||||
lineStyle: `
|
lineStyle: `
|
||||||
width: ${width}px;
|
width: ${width}px;
|
||||||
background-color: ${color};
|
background-color: ${color};
|
||||||
@ -186,7 +186,7 @@ VantComponent({
|
|||||||
this.getRect('.van-tabs__content').then(rect => {
|
this.getRect('.van-tabs__content').then(rect => {
|
||||||
const { width } = rect;
|
const { width } = rect;
|
||||||
|
|
||||||
this.setData({
|
this.set({
|
||||||
trackStyle: `
|
trackStyle: `
|
||||||
width: ${width * this.child.length}px;
|
width: ${width * this.child.length}px;
|
||||||
transform: translateX(${-1 * active * width}px);
|
transform: translateX(${-1 * active * width}px);
|
||||||
@ -202,7 +202,7 @@ VantComponent({
|
|||||||
|
|
||||||
setTabsProps(props) {
|
setTabsProps(props) {
|
||||||
this.child.forEach(item => {
|
this.child.forEach(item => {
|
||||||
item.setData(props);
|
item.set(props);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -217,11 +217,11 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (data.active !== item.data.active) {
|
if (data.active !== item.data.active) {
|
||||||
item.setData(data);
|
item.set(data);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this.setData({}, () => {
|
this.set({}, () => {
|
||||||
this.setLine();
|
this.setLine();
|
||||||
this.setTrack();
|
this.setTrack();
|
||||||
this.scrollIntoView();
|
this.scrollIntoView();
|
||||||
@ -243,7 +243,7 @@ VantComponent({
|
|||||||
|
|
||||||
this.getRect('.van-tabs__nav').then(navRect => {
|
this.getRect('.van-tabs__nav').then(navRect => {
|
||||||
const navWidth = navRect.width;
|
const navWidth = navRect.width;
|
||||||
this.setData({
|
this.set({
|
||||||
scrollLeft: offsetLeft - (navWidth - tabWidth) / 2
|
scrollLeft: offsetLeft - (navWidth - tabWidth) / 2
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -301,10 +301,10 @@ VantComponent({
|
|||||||
wrapStyle = '';
|
wrapStyle = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
// cut down `setData`
|
// cut down `set`
|
||||||
if (wrapStyle === this.data.wrapStyle) return;
|
if (wrapStyle === this.data.wrapStyle) return;
|
||||||
|
|
||||||
this.setData({
|
this.set({
|
||||||
wrapStyle
|
wrapStyle
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -334,7 +334,7 @@ VantComponent({
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (position !== this.data.position) {
|
if (position !== this.data.position) {
|
||||||
this.setData({
|
this.set({
|
||||||
position
|
position
|
||||||
}, () => {
|
}, () => {
|
||||||
this.setWrapStyle();
|
this.setWrapStyle();
|
||||||
|
@ -26,7 +26,7 @@ VantComponent({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
clear() {
|
clear() {
|
||||||
this.setData({
|
this.set({
|
||||||
show: false
|
show: false
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -69,7 +69,7 @@ const Toast: Toast = (options = {}) => {
|
|||||||
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) {
|
||||||
|
@ -58,7 +58,7 @@ VantComponent({
|
|||||||
updateSubItems() {
|
updateSubItems() {
|
||||||
const selectedItem = this.data.items[this.data.mainActiveIndex] || {};
|
const selectedItem = this.data.items[this.data.mainActiveIndex] || {};
|
||||||
|
|
||||||
this.setData({ subItems: selectedItem.children || [] });
|
this.set({ subItems: selectedItem.children || [] });
|
||||||
|
|
||||||
this.updateItemHeight();
|
this.updateItemHeight();
|
||||||
},
|
},
|
||||||
@ -70,12 +70,12 @@ VantComponent({
|
|||||||
this.data.subItems.length * ITEM_HEIGHT
|
this.data.subItems.length * ITEM_HEIGHT
|
||||||
);
|
);
|
||||||
|
|
||||||
this.setData({ mainHeight: Math.min(maxHeight, this.data.maxHeight) });
|
this.set({ mainHeight: Math.min(maxHeight, this.data.maxHeight) });
|
||||||
},
|
},
|
||||||
|
|
||||||
// 更新子项列表高度,根据可展示的最大高度和当前子项列表的高度决定
|
// 更新子项列表高度,根据可展示的最大高度和当前子项列表的高度决定
|
||||||
updateItemHeight() {
|
updateItemHeight() {
|
||||||
this.setData({
|
this.set({
|
||||||
itemHeight: Math.min(
|
itemHeight: Math.min(
|
||||||
this.data.subItems.length * ITEM_HEIGHT,
|
this.data.subItems.length * ITEM_HEIGHT,
|
||||||
this.data.maxHeight
|
this.data.maxHeight
|
||||||
|
Loading…
x
Reference in New Issue
Block a user