mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
parent
69c83bc539
commit
0d95eae0ed
@ -1,5 +1,6 @@
|
||||
import { link } from '../mixins/link';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { addUnit } from '../common/utils';
|
||||
|
||||
VantComponent({
|
||||
relation: {
|
||||
@ -34,7 +35,7 @@ VantComponent({
|
||||
const { columnNum, border, square, gutter, clickable, center } = data;
|
||||
const width = `${100 / columnNum}%`;
|
||||
|
||||
const styleWrapper: Array<string> = [];
|
||||
const styleWrapper = [];
|
||||
styleWrapper.push(`width: ${width}`);
|
||||
|
||||
if (square) {
|
||||
@ -42,16 +43,30 @@ VantComponent({
|
||||
}
|
||||
|
||||
if (gutter) {
|
||||
styleWrapper.push(`padding-right: ${gutter}px`);
|
||||
const gutterValue = addUnit(gutter);
|
||||
styleWrapper.push(`padding-right: ${gutterValue}`);
|
||||
|
||||
const index = children.indexOf(this);
|
||||
if (index >= columnNum) {
|
||||
styleWrapper.push(`margin-top: ${gutter}px`);
|
||||
styleWrapper.push(`margin-top: ${gutterValue}`);
|
||||
}
|
||||
}
|
||||
|
||||
let contentStyle = '';
|
||||
|
||||
if (square && gutter) {
|
||||
const gutterValue = addUnit(gutter);
|
||||
|
||||
contentStyle = `
|
||||
right: ${gutterValue};
|
||||
bottom: ${gutterValue};
|
||||
height: auto;
|
||||
`;
|
||||
}
|
||||
|
||||
this.setData({
|
||||
style: styleWrapper.join('; '),
|
||||
contentStyle,
|
||||
center,
|
||||
border,
|
||||
square,
|
||||
|
@ -1,7 +1,10 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
|
||||
<view class="{{ utils.bem('grid-item', { square }) }}" style="{{ style }}" bindtap="onClick">
|
||||
<view class="{{ utils.bem('grid-item__content', { center, square, clickable, surround: border && gutter }) }} {{ border ? 'van-hairline--surround' : '' }}">
|
||||
<view
|
||||
class="{{ utils.bem('grid-item__content', { center, square, clickable, surround: border && gutter }) }} {{ border ? 'van-hairline--surround' : '' }}"
|
||||
style="{{ contentStyle }}"
|
||||
>
|
||||
<block wx:if="{{ useSlot }}">
|
||||
<slot />
|
||||
</block>
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { addUnit } from '../common/utils';
|
||||
|
||||
VantComponent({
|
||||
relation: {
|
||||
@ -53,7 +54,7 @@ VantComponent({
|
||||
const { gutter } = this.data;
|
||||
if (gutter) {
|
||||
this.setData({
|
||||
style: `padding-left: ${gutter}px`
|
||||
style: `padding-left: ${addUnit(gutter)}`
|
||||
});
|
||||
}
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user