From 68db37302bb34daedc83addefa2c012cf3edbb1e Mon Sep 17 00:00:00 2001 From: rex Date: Mon, 15 Apr 2019 11:25:57 +0800 Subject: [PATCH] [new feature] Cell: add new prop useLabelSlot & add new slot label --- example/pages/cell/index.wxml | 13 ++++-- packages/cell/README.md | 85 +++++++++-------------------------- packages/cell/index.ts | 1 + packages/cell/index.wxml | 10 +++-- 4 files changed, 38 insertions(+), 71 deletions(-) diff --git a/example/pages/cell/index.wxml b/example/pages/cell/index.wxml index 8d26341b..7d40e131 100644 --- a/example/pages/cell/index.wxml +++ b/example/pages/cell/index.wxml @@ -20,16 +20,19 @@ + > + 描述信息 + @@ -48,10 +51,14 @@ arrow-direction="down" value="内容" border="{{ false }}" - url="/pages/dashboard/index" /> + + + + + diff --git a/packages/cell/README.md b/packages/cell/README.md index 840af3e9..053db947 100644 --- a/packages/cell/README.md +++ b/packages/cell/README.md @@ -28,16 +28,8 @@ es5 ```html - - + + ``` @@ -46,17 +38,8 @@ es5 通过`size`属性可以控制单元格的大小 ```html - - + + ``` #### 展示图标 @@ -64,10 +47,7 @@ es5 通过`icon`属性在标题左侧展示图标 ```html - + ``` #### 展示箭头 @@ -75,22 +55,17 @@ es5 传入`is-link`属性则会在右侧显示箭头,并且可以通过传入`arrow-direction`属性控制箭头方向 ```html - - - + + + +``` + +#### 页面跳转 + +可以通过`url`属性进行页面跳转,通过`link-type`属性控制跳转类型 + +```html + ``` #### 分组标题 @@ -111,27 +86,15 @@ es5 如以上用法不能满足你的需求,可以使用对应的插槽来自定义显示的内容 ```html - + 单元格 标签 - + - + ``` @@ -166,6 +129,7 @@ es5 | is-link | 是否展示右侧箭头并开启点击反馈 | `Boolean` | `false` | | required | 是否显示表单必填星号 | `Boolean` | `false` | | arrow-direction | 箭头方向,可选值为 `left` `up` `down` | `String` | - | +| use-label-slot | 是否使用 label slot | `Boolean` | `false` | ### Cell Event @@ -179,6 +143,7 @@ es5 |-----------|-----------| | - | 自定义`value`显示内容,如果设置了`value`属性则不生效 | | title | 自定义`title`显示内容,如果设置了`title`属性则不生效 | +| label | 自定义`label`显示内容,需要设置 `use-label-slot`属性 | | icon | 自定义`icon`显示内容,如果设置了`icon`属性则不生效 | | right-icon | 自定义右侧按钮,默认是`arrow`,如果设置了`is-link`属性则不生效 | @@ -190,11 +155,3 @@ es5 | title-class | 标题样式类 | | label-class | 描述信息样式类 | | value-class | 右侧内容样式类 | - -### 更新日志 - -| 版本 | 类型 | 内容 | -|-----------|-----------|-----------| -| 0.0.1 | feature | 新增组件 | -| 0.3.3 | bugfix | 修复 value 为空时 title 最大宽度错误的问题 | -| 0.3.4 | bugfix | 修复使用 title 插槽时长度错误的问题 | diff --git a/packages/cell/index.ts b/packages/cell/index.ts index d422f9cd..f00abde7 100644 --- a/packages/cell/index.ts +++ b/packages/cell/index.ts @@ -25,6 +25,7 @@ VantComponent({ titleWidth: String, customStyle: String, arrowDirection: String, + useLabelSlot: Boolean, border: { type: Boolean, value: true diff --git a/packages/cell/index.wxml b/packages/cell/index.wxml index 44f643d8..afaaaf86 100644 --- a/packages/cell/index.wxml +++ b/packages/cell/index.wxml @@ -19,11 +19,13 @@ style="{{ titleWidth ? 'max-width:' + titleWidth + ';min-width:' + titleWidth : '' }}" class="van-cell__title title-class" > - - {{ title }} - {{ label }} - + {{ title }} + + + + {{ label }} +