Package Exports
- blear.ui.mobile-picker
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (blear.ui.mobile-picker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
blear.ui.mobile-picker
联动实例
配合blear.classes.linkage
来实现数据联动。
var mobilePicker = new MobilePicker({
title: '所在地区',
length: 2
});
var linkage = new Linkage({
length: 2
});
var urls = [
'/api/district/provinces',
'/api/district/cities'
];
linkage.on('getData', function (index, parent, done) {
api({
url: urls[index],
query: {
parent: parent
}
}, function (err, list) {
if (err) {
list = [];
}
done(list);
});
});
linkage.on('changeList', function (index, list) {
mobilePicker.render(index, list);
});
linkage.on('changeValue', function (index, value) {
mobilePicker.changeValue(index, value);
});
linkage.ready(function () {
mobilePicker.on('change', function (index, value) {
linkage.change(index, value);
});
mobilePicker.on('setValue', function (value) {
linkage.setValue(value);
});
});