vant-weapp/dist/form/check_label.js
MuYu eba815b60f 增加单选 和一个验证码的样式 (#30)
* 增加单选 和一个验证码的样式

* 移除一个不存在的页面链接

* 移除业务中的样式

* 统一风格
2017-09-27 12:33:49 +08:00

27 lines
588 B
JavaScript

function handle(e) {
var dataset = e.currentTarget.dataset;
var componentId = dataset.componentId;
var value = e.detail.value;
callback.call(this, componentId, value);
}
function callback(componentId, value) {
var e = { componentId, value };
console.info('[zan:CheckLabel:select]', e);
if (this.handleZanCheckLabelSelect) {
this.handleZanCheckLabelSelect(e);
} else {
console.warn('页面缺少 handleZanCheckLabelSelect 回调函数');
}
}
var CheckLabel = {
_handleZanCheckLabelSelect(e) {
handle.call(this, e);
},
};
module.exports = CheckLabel;