[breaking change] Panel: rewrite

This commit is contained in:
陈嘉涵 2018-08-02 15:19:46 +08:00
parent 5e66f2d5f8
commit 2f3869f028
10 changed files with 112 additions and 78 deletions

View File

@ -11,7 +11,7 @@ page {
}
.demo-margin-right {
margin-right: 15px;
margin-right: 10px;
}
.demo-margin-bottom {

View File

@ -1,6 +1,8 @@
{
"navigationBarTitleText": "Panel 面板",
"usingComponents": {
"van-panel": "../../dist/panel/index"
"demo-block": "../../components/demo-block/index",
"van-panel": "../../dist/panel/index",
"van-button": "../../dist/button/index"
}
}

View File

@ -1,11 +1,15 @@
<van-panel class="panel-example">
<view style="padding: 15px;">PANEL 内容区域</view>
</van-panel>
<demo-block title="基础用法">
<van-panel title="标题" desc="描述信息" status="状态">
<view class="content">内容</view>
</van-panel>
</demo-block>
<van-panel title="标题" class="panel-example">
<view style="padding: 15px;">带有标题的 PANEL</view>
</van-panel>
<van-panel title="标题" hide-border="{{ true }}" class="panel-example">
<view style="padding: 15px;">无边框的panel</view>
</van-panel>
<demo-block title="高级用法">
<van-panel title="标题" desc="描述信息" status="状态" use-footer-slot>
<view class="content">内容</view>
<view slot="footer" class="footer">
<van-button size="small" custom-class="demo-margin-right">按钮</van-button>
<van-button size="small" type="danger">按钮</van-button>
</view>
</van-panel>
</demo-block>

View File

@ -1,4 +1,8 @@
.panel-example {
display: block;
margin-top: 15px;
.content {
padding: 20px;
font-size: 16px;
}
.footer {
text-align: right;
}

View File

@ -10,6 +10,7 @@
box-sizing: border-box;
font-size: 16px;
text-align: center;
vertical-align: middle;
-webkit-appearance: none;
-webkit-text-size-adjust: 100%;

View File

@ -1,25 +1,58 @@
## Panel 面板组件
## Panel 面板
### 使用指南
在 index.json 中引入组件
```json
{
"usingComponents": {
"van-panel": "path/to/vant-weapp/dist/panel/index"
}
"usingComponents": {
"van-panel": "path/to/vant-weapp/dist/panel/index"
}
```
### 代码演示
Panel 提供了一块白色的展示区域,使用方式如下
#### 基础用法
面板只是一个容器,里面可以放入自定义的内容
```html
<van-panel title='我是标题'>
<van-panel title="标题" desc="描述信息" status="状态">
<view>内容</view>
</van-panel>
```
| 参数 | 说明 | 类型 | 默认值 | 必须 |
|-----------|-----------|-----------|-------------|-------------|
| title | panel的标题 | String | - | |
| hide-border | 内容区隐藏边框 | Boolean | - | |
#### 高级用法
使用`slot`自定义内容
```html
<van-panel title="标题" desc="描述信息" status="状态" use-footer-slot>
<view>内容</view>
<view slot="footer">
<van-button size="small">按钮</van-button>
<van-button size="small" type="danger">按钮</van-button>
</view>
</van-panel>
```
### API
| 参数 | 说明 | 类型 | 默认值 |
|-----------|-----------|-----------|-------------|
| title | 标题 | `String` | - |
| desc | 描述 | `String` | - |
| status | 状态 | `String` | - |
| use-footer-slot | 是否使用 footer slot | `Boolean` | `false` |
### Slot
| 名称 | 说明 |
|-----------|-----------|
| - | 自定义内容 |
| header | 自定义 header如果设置了`title``desc``status`属性则不生效 |
| footer | 自定义 footer需要设置 `use-footer-slot`属性 |
### 外部样式类
| 类名 | 说明 |
|-----------|-----------|
| custom-class | 根节点样式类 |
| header-class | 头部样式类 |
| footer-class | 底部样式类 |

View File

@ -1,23 +1,18 @@
Component({
/**
* 组件的属性列表
* 用于组件自定义设置
*/
externalClasses: [
'custom-class',
'footer-class'
],
options: {
multipleSlots: true
},
properties: {
// 标题
title: {
type: String,
value: ''
},
// 内容区顶部是否取消10像素的间距
hideTop: {
type: Boolean,
value: false
},
// 内容区顶部是否取消边框
hideBorder: {
type: Boolean,
value: false
}
desc: String,
title: String,
status: String,
headerClass: String,
useFooterSlot: Boolean
}
});

View File

@ -1,3 +1,6 @@
{
"component": true
"component": true,
"usingComponents": {
"van-cell": "../cell/index"
}
}

View File

@ -1,30 +1,13 @@
@import "../common/_mixins";
@import '../helper/index.pcss';
.van-panel {
position: relative;
overflow: hidden;
}
background: $white;
.van-panel__title {
font-size: 14px;
line-height: 1;
color: #999;
padding: 20px 15px 10px 15px;
}
&__header-value {
color: $red;
}
.van-panel__content {
position: relative;
background: #fff;
overflow: hidden;
&::after {
@mixin hairline;
border-top-width: 1px;
border-bottom-width: 1px;
}
}
.van-panel--without-border {
&::after {
border: 0 none;
&__footer {
padding: 10px 15px;
}
}

View File

@ -1,10 +1,19 @@
<view class="van-panel">
<view
wx:if="{{ title }}"
class="van-panel__title">{{ title }}</view>
<view
class="van-panel__content {{ hideBorder ? 'van-panel--without-border' : '' }}"
>
<slot></slot>
<view class="van-panel van-hairline--top-bottom custom-class">
<van-cell
wx:if="{{ title || desc || status }}"
title="{{ title }}"
label="{{ desc }}"
value="{{ status }}"
custom-class="{{ headerClass }}"
value-class="van-panel__header-value"
/>
<slot wx:else name="header" />
<view class="van-panel__content">
<slot />
</view>
<view wx:if="{{ useFooterSlot }}" class="van-panel__footer van-hairline--top footer-class">
<slot name="footer" />
</view>
</view>