[bugfix] Cell: border unshow (#714)

This commit is contained in:
neverland 2018-10-09 11:47:18 +08:00 committed by GitHub
parent 351866500e
commit 86e7027866
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 27 additions and 11 deletions

View File

@ -23,7 +23,7 @@ gulp.task('compile-less', () => {
.pipe(postcss()) .pipe(postcss())
.pipe(cssmin()) .pipe(cssmin())
.pipe(insert.transform((contents, file) => { .pipe(insert.transform((contents, file) => {
if (!file.path.includes('packages'+ path.sep +'common')) { if (!file.path.includes('packages' + path.sep + 'common')) {
contents = `@import '../common/index.wxss';` + contents; contents = `@import '../common/index.wxss';` + contents;
} }
return contents; return contents;

View File

@ -1,4 +1,5 @@
@import '../common/style/var.less'; @import '../common/style/var.less';
@import "../common/style/mixins/hairline.less";
.van-cell { .van-cell {
width: 100%; width: 100%;
@ -12,10 +13,11 @@
font-size: 14px; font-size: 14px;
&::after { &::after {
left: 15px; .hairline-bottom(@border-color, 15px);
right: 0; }
transform: scaleY(0.5);
border-bottom-width: 1px; &--borderless::after {
display: none;
} }
&-group { &-group {

View File

@ -33,9 +33,9 @@ VantComponent({
cellClass(): string { cellClass(): string {
const { data } = this; const { data } = this;
return this.classNames('custom-class', 'van-cell', { return this.classNames('custom-class', 'van-cell', {
'van-hairline': data.border,
'van-cell--center': data.center, 'van-cell--center': data.center,
'van-cell--required': data.required, 'van-cell--required': data.required,
'van-cell--borderless': !data.border,
'van-cell--clickable': data.isLink || data.clickable 'van-cell--clickable': data.isLink || data.clickable
}); });
}, },

View File

@ -1,13 +1,27 @@
.hairline(@border-color: #eee) { .hairline-common() {
content: ''; content: ' ';
position: absolute; position: absolute;
pointer-events: none;
box-sizing: border-box;
transform-origin: center; /* cover wechat button:after default transforn-origin */
}
.hairline(@border-color: #eee) {
.hairline-common();
top: -50%; top: -50%;
left: -50%; left: -50%;
right: -50%; right: -50%;
bottom: -50%; bottom: -50%;
transform: scale(0.5); transform: scale(0.5);
pointer-events: none;
box-sizing: border-box;
transform-origin: center; /* cover wechat button:after default transforn-origin */
border: 0 solid @border-color; border: 0 solid @border-color;
} }
.hairline-bottom(@border-color: #eee, @left: 0) {
.hairline-common();
top: auto;
left: @left;
right: 0;
bottom: 0;
transform: scaleY(0.5);
border-bottom: 1px solid @border-color;
}