feat(address-edit): add area-columns-placeholder props (#4584)

This commit is contained in:
Jake 2019-09-26 16:38:18 +08:00 committed by neverland
parent 3b32245bc8
commit d3169e7e6b
3 changed files with 7 additions and 0 deletions

View File

@ -62,6 +62,7 @@ export default {
| Attribute | Description | Type | Default |
|------|------|------|------|
| area-list | Area List | `Object` | - |
| area-columns-placeholder | placeholder of area columns | `string[]` | `[]` | - |
| address-info | Address Info | `Object` | `{}` |
| search-result | Address search result | `Array` | `[]` |
| show-postal | Whether to show postal field | `Boolean` | `false` |

View File

@ -56,6 +56,10 @@ export default sfc({
telValidator: {
type: Function,
default: isMobile
},
areaColumnsPlaceholder: {
type: Array,
default: () => []
}
},
@ -323,6 +327,7 @@ export default sfc({
loading={!this.areaListLoaded}
value={data.areaCode}
areaList={this.areaList}
columnsPlaceholder={this.areaColumnsPlaceholder}
onConfirm={this.onAreaConfirm}
onCancel={() => {
this.showAreaPopup = false;

View File

@ -60,6 +60,7 @@ export default {
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|------|------|------|------|------|
| area-list | 地区列表 | `Object` | - | - |
| area-columns-placeholder | 地区选择列占位提示文字 | `string[]` | `[]` | - |
| address-info | 收货人信息初始值 | `Object` | `{}` | - |
| search-result | 详细地址搜索结果 | `Array` | `[]` | - |
| show-postal | 是否显示邮政编码 | `Boolean` | `false` | - |