mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Cell: remove unworked props (#559)
This commit is contained in:
parent
77e3a21448
commit
652bff5cb2
@ -106,7 +106,6 @@
|
|||||||
| clickable | 是否开启点击反馈 | `Boolean` | `false` |
|
| clickable | 是否开启点击反馈 | `Boolean` | `false` |
|
||||||
| is-link | 是否展示右侧箭头并开启点击反馈 | `Boolean` | `false` |
|
| is-link | 是否展示右侧箭头并开启点击反馈 | `Boolean` | `false` |
|
||||||
| required | 是否显示表单必填星号 | `Boolean` | `false` |
|
| required | 是否显示表单必填星号 | `Boolean` | `false` |
|
||||||
| arrow-direction | 箭头方向,可选值为 `left` `up` `down` | `String` | - |
|
|
||||||
|
|
||||||
### Cell Event
|
### Cell Event
|
||||||
|
|
||||||
@ -131,5 +130,3 @@
|
|||||||
| title-class | 标题样式类 |
|
| title-class | 标题样式类 |
|
||||||
| label-class | 描述信息样式类 |
|
| label-class | 描述信息样式类 |
|
||||||
| value-class | 右侧内容样式类 |
|
| value-class | 右侧内容样式类 |
|
||||||
| left-icon-class | 左侧图标样式类 |
|
|
||||||
| right-icon-class | 右侧图标样式类 |
|
|
||||||
|
@ -4,9 +4,7 @@ create({
|
|||||||
classes: [
|
classes: [
|
||||||
'title-class',
|
'title-class',
|
||||||
'label-class',
|
'label-class',
|
||||||
'value-class',
|
'value-class'
|
||||||
'left-icon-class',
|
|
||||||
'right-icon-class'
|
|
||||||
],
|
],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
@ -21,7 +19,6 @@ create({
|
|||||||
clickable: Boolean,
|
clickable: Boolean,
|
||||||
titleWidth: String,
|
titleWidth: String,
|
||||||
customStyle: String,
|
customStyle: String,
|
||||||
arrowDirection: String,
|
|
||||||
linkType: {
|
linkType: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'navigateTo'
|
value: 'navigateTo'
|
||||||
@ -32,6 +29,23 @@ create({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
cellClass() {
|
||||||
|
const { data } = this;
|
||||||
|
return this.classNames('custom-class', 'van-cell', {
|
||||||
|
'van-hairline': data.border,
|
||||||
|
'van-cell--center': data.center,
|
||||||
|
'van-cell--required': data.required,
|
||||||
|
'van-cell--clickable': data.isLink || data.clickable
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
titleStyle() {
|
||||||
|
const { titleWidth } = this.data;
|
||||||
|
return titleWidth ? `max-width: ${titleWidth};min-width: ${titleWidth}` : '';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onClick() {
|
onClick() {
|
||||||
const { url } = this.data;
|
const { url } = this.data;
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
vertical-align:middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__right-icon {
|
&__right-icon {
|
||||||
@ -53,18 +53,6 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
|
||||||
&--left::before {
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
&--up::before {
|
|
||||||
transform: rotate(-90deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
&--down::before {
|
|
||||||
transform: rotate(90deg);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&--clickable {
|
&--clickable {
|
||||||
|
@ -1,12 +1,20 @@
|
|||||||
<view
|
<view
|
||||||
class="custom-class van-cell {{ center ? 'van-cell--center' : '' }} {{ required ? 'van-cell--required' : '' }} {{ isLink || clickable ? 'van-cell--clickable' : '' }} {{ border ? 'van-hairline' : '' }}"
|
class="{{ cellClass }}"
|
||||||
style="{{ customStyle }}"
|
style="{{ customStyle }}"
|
||||||
bind:tap="onClick"
|
bind:tap="onClick"
|
||||||
>
|
>
|
||||||
<van-icon wx:if="{{ icon }}" custom-class="van-cell__left-icon left-icon-class" name="{{ icon }}" />
|
<van-icon
|
||||||
|
wx:if="{{ icon }}"
|
||||||
|
name="{{ icon }}"
|
||||||
|
custom-class="van-cell__left-icon"
|
||||||
|
/>
|
||||||
<slot wx:else name="icon" />
|
<slot wx:else name="icon" />
|
||||||
|
|
||||||
<view wx:if="{{ title }}" class="van-cell__title title-class" style="{{ titleWidth ? 'max-width: ' + titleWidth + ';min-width: ' + titleWidth : '' }}">
|
<view
|
||||||
|
wx:if="{{ title }}"
|
||||||
|
style="{{ titleStyle }}"
|
||||||
|
class="van-cell__title title-class"
|
||||||
|
>
|
||||||
{{ title }}
|
{{ title }}
|
||||||
<view wx:if="{{ label }}" class="van-cell__label label-class">{{ label }}</view>
|
<view wx:if="{{ label }}" class="van-cell__label label-class">{{ label }}</view>
|
||||||
</view>
|
</view>
|
||||||
@ -20,7 +28,7 @@
|
|||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ isLink }}"
|
wx:if="{{ isLink }}"
|
||||||
name="arrow"
|
name="arrow"
|
||||||
custom-class="van-cell__right-icon right-icon-class {{ arrowDirection ? 'van-cell__right-icon--' + arrowDirection : '' }}"
|
custom-class="van-cell__right-icon"
|
||||||
/>
|
/>
|
||||||
<slot wx:else name="right-icon" />
|
<slot wx:else name="right-icon" />
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ export function observeProps(props) {
|
|||||||
|
|
||||||
Object.keys(props).forEach(key => {
|
Object.keys(props).forEach(key => {
|
||||||
let prop = props[key];
|
let prop = props[key];
|
||||||
if (!prop.type) {
|
if (prop === null || !prop.type) {
|
||||||
prop = { type: prop };
|
prop = { type: prop };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user