mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[new feature] GoodsAction: add safe-area-inset-bottom prop (#3174)
This commit is contained in:
parent
49f4be180f
commit
af09a7cb88
@ -83,6 +83,11 @@ Use `info` prop to show messages in upper right corner of icon
|
|||||||
|
|
||||||
### API
|
### API
|
||||||
|
|
||||||
|
#### GoodsAction
|
||||||
|
|
||||||
|
| Attribute | Description | Type | Default |
|
||||||
|
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation, to enable those features use `viewport-fit=cover` in the `viewport` meta tag | `Boolean` | `false` |
|
||||||
|
|
||||||
#### GoodsActionMiniBtn
|
#### GoodsActionMiniBtn
|
||||||
|
|
||||||
| Attribute | Description | Type | Default |
|
| Attribute | Description | Type | Default |
|
||||||
|
@ -6,4 +6,10 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
background-color: @white;
|
||||||
|
|
||||||
|
&--safe-area-inset-bottom {
|
||||||
|
padding-bottom: constant(safe-area-inset-bottom);
|
||||||
|
padding-bottom: env(safe-area-inset-bottom);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,21 +3,32 @@ import { inherit } from '../utils/functional';
|
|||||||
|
|
||||||
// Types
|
// Types
|
||||||
import { CreateElement, RenderContext } from 'vue/types';
|
import { CreateElement, RenderContext } from 'vue/types';
|
||||||
import { DefaultProps, DefaultSlots } from '../utils/use/sfc';
|
import { DefaultSlots } from '../utils/use/sfc';
|
||||||
|
|
||||||
|
export type GoodsActionProps = {
|
||||||
|
safeAreaInsetBottom?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
const [sfc, bem] = use('goods-action');
|
const [sfc, bem] = use('goods-action');
|
||||||
|
|
||||||
function GoodsAction(
|
function GoodsAction(
|
||||||
h: CreateElement,
|
h: CreateElement,
|
||||||
props: DefaultProps,
|
props: GoodsActionProps,
|
||||||
slots: DefaultSlots,
|
slots: DefaultSlots,
|
||||||
ctx: RenderContext
|
ctx: RenderContext
|
||||||
) {
|
) {
|
||||||
return (
|
return (
|
||||||
<div class={bem()} {...inherit(ctx, true)}>
|
<div
|
||||||
|
class={bem({ 'safe-area-inset-bottom': props.safeAreaInsetBottom })}
|
||||||
|
{...inherit(ctx, true)}
|
||||||
|
>
|
||||||
{slots.default && slots.default()}
|
{slots.default && slots.default()}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default sfc(GoodsAction);
|
GoodsAction.props = {
|
||||||
|
safeAreaInsetBottom: Boolean
|
||||||
|
};
|
||||||
|
|
||||||
|
export default sfc<GoodsActionProps>(GoodsAction);
|
||||||
|
@ -82,6 +82,12 @@ export default {
|
|||||||
|
|
||||||
### API
|
### API
|
||||||
|
|
||||||
|
#### GoodsAction
|
||||||
|
|
||||||
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||||
|
|------|------|------|------|------|
|
||||||
|
| safe-area-inset-bottom | 是否开启 iPhone X 底部安全区适配,需要在 `viewport` meta 标签中设置 `viewport-fit=cover` | `Boolean` | `false` | 1.6.15 |
|
||||||
|
|
||||||
#### GoodsActionMiniBtn
|
#### GoodsActionMiniBtn
|
||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user