You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
798 B
27 lines
798 B
2 months ago
|
export const basic = Behavior({
|
||
|
methods: {
|
||
|
$emit(name, detail, options) {
|
||
|
this.triggerEvent(name, detail, options);
|
||
|
},
|
||
|
set(data) {
|
||
|
this.setData(data);
|
||
|
return new Promise((resolve) => wx.nextTick(resolve));
|
||
|
},
|
||
|
// high performance setData
|
||
|
setView(data, callback) {
|
||
|
const target = {};
|
||
|
let hasChange = false;
|
||
|
Object.keys(data).forEach((key) => {
|
||
|
if (data[key] !== this.data[key]) {
|
||
|
target[key] = data[key];
|
||
|
hasChange = true;
|
||
|
}
|
||
|
});
|
||
|
if (hasChange) {
|
||
|
return this.setData(target, callback);
|
||
|
}
|
||
|
return callback && callback();
|
||
|
},
|
||
|
},
|
||
|
});
|