[improvement] Cell: value should not has width when empty (#609)

This commit is contained in:
neverland 2018-09-20 14:58:10 +08:00 committed by GitHub
parent 5ee7ad44a9
commit 4b59ae9424
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

2
dist/field/index.js vendored
View File

@ -66,7 +66,7 @@ create({
'van-field--error': data.error,
'van-field__textarea': data.type === 'textarea',
'van-field__input--disabled': data.disabled,
[`van-field--${data.inputAlign}`]: data.inputAlign
[`van-field__input--${data.inputAlign}`]: data.inputAlign
});
}
},

View File

@ -13,7 +13,6 @@
wx:for="{{ group.list }}"
wx:key="item.title"
is-link
title-width="200px"
url="/pages{{ item.path }}/index"
title="{{ item.title }}"
></van-cell>

View File

@ -32,6 +32,10 @@
&__title,
&__value {
flex: 1;
&:empty {
display: none;
}
}
&__value {