mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
15 lines
375 B
JavaScript
15 lines
375 B
JavaScript
module.exports = {
|
|
_handleZanFieldChange(event) {
|
|
const { componentId } = event.currentTarget.dataset;
|
|
event.componentId = componentId;
|
|
|
|
console.info('[zan:field:change]', event);
|
|
|
|
if (this.handleZanFieldChange) {
|
|
return this.handleZanFieldChange(event);
|
|
} else {
|
|
console.warn('页面缺少 handleZanFieldChange 回调函数');
|
|
}
|
|
}
|
|
};
|