mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
* add src dir && add build * add build watch && change dir name * bower ignore package.json
15 lines
368 B
JavaScript
15 lines
368 B
JavaScript
module.exports = {
|
|
_handleZanFieldChange(event) {
|
|
const { componentId } = event.currentTarget.dataset;
|
|
event.componentId = componentId;
|
|
|
|
console.info('[zan:field:change]', event);
|
|
|
|
if (this.handleZanFieldChange) {
|
|
this.handleZanFieldChange(event);
|
|
} else {
|
|
console.warn('页面缺少 handleZanFieldChange 回调函数');
|
|
}
|
|
}
|
|
};
|