Yao 9c05bd2d58
[new feature] Field: 增加 value 传入支持 (#60)
* field 支持 value 传入

* textarea 清除输入示例
2017-11-17 21:13:35 +08:00

35 lines
1.0 KiB
JavaScript

var Zan = require('../../dist/index');
Page(Object.assign({}, Zan.Field, {
data: {
value: 'test',
textareaValue: 'test textarea',
area: ['省份', '北京市', '天津市', '河北省', '山西省', '内蒙古自治区', '辽宁省', '吉林省', '黑龙江省', '上海市', '江苏省', '浙江省', '安徽省', '福建省', '江西省', '山东省', '河南省', '湖北省', '湖南省', '广东省', '广西壮族自治区', '海南省', '重庆市', '四川省', '贵州省', '云南省', '西藏自治区', '陕西省', '甘肃省', '青海省', '宁夏回族自治区', '新疆维吾尔自治区', '台湾省', '香港特别行政区', '澳门特别行政区'],
areaIndex: 0
},
onAreaChange(e) {
this.setData({
areaIndex: e.detail.value
});
},
handleZanFieldChange(e) {
const { componentId, detail } = e;
console.log('[zan:field:change]', componentId, detail);
},
clearInput() {
this.setData({
value: ''
});
},
clearTextarea() {
this.setData({
textareaValue: ''
});
}
}));