feat(Area): reset method add code param (#1949)

This commit is contained in:
neverland 2019-09-04 10:54:45 +08:00 committed by GitHub
parent 22ad214714
commit d7c5d02d32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 4 deletions

View File

@ -20,6 +20,10 @@
#### 新特性
##### Area
- `reset`方法支持传入`code`参数
##### Button
- `color`属性支持渐变色

View File

@ -65,11 +65,11 @@
### 方法
通过 selectComponent 可以获取到 area 实例并调用实例方法
通过 selectComponent 可以获取到 Area 实例并调用实例方法
| 方法名 | 参数 | 返回值 | 介绍 |
|-----------|-----------|-----------|-------------|
| reset | - | - | 重置所有选项到第一项 |
| reset | code: string | - | 根据 code 重置所有选项,若不传 code则重置到第一项 |
### 省市区列表数据格式

View File

@ -205,8 +205,8 @@ VantComponent({
return area;
},
reset() {
this.code = '';
reset(code) {
this.code = code || '';
return this.setValues();
}
}