Yao ce5559a57e
[improvement] 部分组件边框实现修改 (#87)
* 使用超细边框

* 部分组件切换为 hairline

* 文档 边框替换
2017-12-23 14:25:41 +08:00

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);
}
};