feat(AddressList): add show-add-button prop (#12090)

This commit is contained in:
Gavin 2023-07-15 08:20:58 +08:00 committed by GitHub
parent e42500070b
commit 44f2e30edb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 12 deletions

View File

@ -22,6 +22,7 @@ export const addressListProps = {
switchable: truthProp,
disabledText: String,
disabledList: makeArrayProp<AddressListAddress>(),
showAddButton: truthProp,
addButtonText: String,
defaultTagText: String,
rightIcon: makeStringProp('edit'),
@ -88,18 +89,19 @@ export default defineComponent({
}
};
const renderBottom = () => (
<div class={[bem('bottom'), 'van-safe-area-bottom']}>
<Button
round
block
type="primary"
text={props.addButtonText || t('add')}
class={bem('add')}
onClick={() => emit('add')}
/>
</div>
);
const renderBottom = () =>
props.showAddButton ? (
<div class={[bem('bottom'), 'van-safe-area-bottom']}>
<Button
round
block
type="primary"
text={props.addButtonText || t('add')}
class={bem('add')}
onClick={() => emit('add')}
/>
</div>
) : undefined;
return () => {
const List = renderList(props.list);

View File

@ -88,6 +88,7 @@ export default {
| disabled-list | Disabled address list | _Address[]_ | `[]` |
| disabled-text | Disabled text | _string_ | - |
| switchable | Whether to allow switch address | _boolean_ | `true` |
| show-add-button | Whether to show add button | _boolean_ | `true` |
| add-button-text | Add button text | _string_ | `Add new address` |
| default-tag-text | Default tag text | _string_ | - |
| right-icon `v4.5.0` | Right Icon | _string_ | `edit` |

View File

@ -88,6 +88,7 @@ export default {
| disabled-list | 不可配送地址列表 | _AddressListAddress[]_ | `[]` |
| disabled-text | 不可配送提示文案 | _string_ | - |
| switchable | 是否允许切换地址 | _boolean_ | `true` |
| show-add-button | 是否显示底部按钮 | _boolean_ | `true` |
| add-button-text | 底部按钮文字 | _string_ | `新增地址` |
| default-tag-text | 默认地址标签文字 | _string_ | - |
| right-icon `v4.5.0` | 右侧图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/zh-CN/icon#props) | _string_ | `edit` |