mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
26 lines
565 B
JavaScript
26 lines
565 B
JavaScript
const { extractComponentId } = require('../common/helper');
|
|
|
|
function handle(e) {
|
|
const componentId = extractComponentId(e);
|
|
const value = e.detail.value;
|
|
|
|
callback.call(this, componentId, value);
|
|
}
|
|
|
|
function callback(componentId, value) {
|
|
const e = { componentId, value };
|
|
console.info('[zan:Select:change]', e);
|
|
|
|
if (this.handleZanSelectChange) {
|
|
this.handleZanSelectChange(e);
|
|
} else {
|
|
console.warn('页面缺少 handleZanSelectChange 回调函数');
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
_handleZanSelectChange(e) {
|
|
handle.call(this, e);
|
|
}
|
|
};
|