mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(panel): remove useFooterSlot (#4205)
This commit is contained in:
parent
b9920eee4a
commit
62f7d2b65e
@ -27,7 +27,7 @@
|
|||||||
使用`slot`自定义内容。
|
使用`slot`自定义内容。
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<van-panel title="标题" desc="描述信息" status="状态" use-footer-slot>
|
<van-panel title="标题" desc="描述信息" status="状态">
|
||||||
<view>内容</view>
|
<view>内容</view>
|
||||||
<view slot="footer">
|
<view slot="footer">
|
||||||
<van-button size="small">按钮</van-button>
|
<van-button size="small">按钮</van-button>
|
||||||
@ -40,12 +40,11 @@
|
|||||||
|
|
||||||
### Props
|
### Props
|
||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
||||||
| --------------- | -------------------- | --------- | ------- | ---- |
|
| ------ | ---- | -------- | ------ | ---- |
|
||||||
| title | 标题 | _string_ | - | - |
|
| title | 标题 | _string_ | - | - |
|
||||||
| desc | 描述 | _string_ | - | - |
|
| desc | 描述 | _string_ | - | - |
|
||||||
| status | 状态 | _string_ | - | - |
|
| status | 状态 | _string_ | - | - |
|
||||||
| use-footer-slot | 是否使用 footer slot | _boolean_ | `false` | - |
|
|
||||||
|
|
||||||
### Slot
|
### Slot
|
||||||
|
|
||||||
@ -53,7 +52,7 @@
|
|||||||
| ------ | -------------------------------------------------------------- |
|
| ------ | -------------------------------------------------------------- |
|
||||||
| - | 自定义内容 |
|
| - | 自定义内容 |
|
||||||
| header | 自定义 header,如果设置了`title`、`desc`、`status`属性则不生效 |
|
| header | 自定义 header,如果设置了`title`、`desc`、`status`属性则不生效 |
|
||||||
| footer | 自定义 footer,需要设置 `use-footer-slot`属性 |
|
| footer | 自定义 footer |
|
||||||
|
|
||||||
### 外部样式类
|
### 外部样式类
|
||||||
|
|
||||||
|
@ -10,5 +10,9 @@
|
|||||||
|
|
||||||
&__footer {
|
&__footer {
|
||||||
.theme(padding,'@panel-footer-padding');
|
.theme(padding,'@panel-footer-padding');
|
||||||
|
|
||||||
|
&:empty {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,5 @@ VantComponent({
|
|||||||
desc: String,
|
desc: String,
|
||||||
title: String,
|
title: String,
|
||||||
status: String,
|
status: String,
|
||||||
useFooterSlot: Boolean,
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<view class="van-panel van-hairline--top-bottom custom-class">
|
<view class="van-panel van-hairline--top-bottom custom-class">
|
||||||
<van-cell
|
<van-cell
|
||||||
wx:if="{{ title || desc || status }}"
|
wx:if="{{ title || desc || status }}"
|
||||||
title="{{ title }}"
|
title="{{ title }}"
|
||||||
label="{{ desc }}"
|
label="{{ desc }}"
|
||||||
@ -13,7 +13,7 @@
|
|||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view wx:if="{{ useFooterSlot }}" class="van-panel__footer van-hairline--top footer-class">
|
<view class="van-panel__footer van-hairline--top footer-class">
|
||||||
<slot name="footer" />
|
<slot name="footer" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user