diff --git a/docs/markdown/en-US/address-edit.md b/docs/markdown/en-US/address-edit.md index e5842ed54..644e8bc6e 100644 --- a/docs/markdown/en-US/address-edit.md +++ b/docs/markdown/en-US/address-edit.md @@ -98,7 +98,7 @@ export default { | address_detail | Detailed Address | `String` | | area_code | Area code | `String` | | postal_code | Postal code | `String` | -| is_default | Is default address | `String` | +| is_default | Is default address | `Boolean` | #### searchResult Data Structure | key | Description | Type | diff --git a/docs/markdown/zh-CN/address-edit.md b/docs/markdown/zh-CN/address-edit.md index ecdfdf24b..35f29180c 100644 --- a/docs/markdown/zh-CN/address-edit.md +++ b/docs/markdown/zh-CN/address-edit.md @@ -101,7 +101,7 @@ export default { | address_detail | 详细地址 | `String` | | area_code | 地区编码,通过省市区选择获取 | `String` | | postal_code | 邮政编码 | `String` | -| is_default | 是否为默认地址 | `String` | +| is_default | 是否为默认地址 | `Boolean` | #### searchResult 数据格式 | key | 说明 | 类型 | diff --git a/docs/markdown/zh-CN/picker.md b/docs/markdown/zh-CN/picker.md index 85ba482ec..2659bc869 100644 --- a/docs/markdown/zh-CN/picker.md +++ b/docs/markdown/zh-CN/picker.md @@ -131,7 +131,7 @@ export default { | show-toolbar | 是否显示顶部栏 | `Boolean` | `false` | - | | title | 顶部栏标题 | `String` | `''` | - | | loading | 是否显示加载状态 | `Boolean` | `false` | - | -| confirm-button-text | 确认按钮文字 | `String` | `完成` | - | +| confirm-button-text | 确认按钮文字 | `String` | `确认` | - | | cancel-button-text | 取消按钮文字 | `String` | `取消` | - | | item-height | 选项高度 | `Number` | `44` | - | | visible-item-count | 可见的选项个数 | `Number` | `5` | - | diff --git a/packages/address-edit/Detail.vue b/packages/address-edit/Detail.vue index 3b4dc0df8..30cd52609 100644 --- a/packages/address-edit/Detail.vue +++ b/packages/address-edit/Detail.vue @@ -1,8 +1,8 @@