vant
This commit is contained in:
1
utils/dist/grid-item/index.d.ts
vendored
Normal file
1
utils/dist/grid-item/index.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export {};
|
||||
68
utils/dist/grid-item/index.js
vendored
Normal file
68
utils/dist/grid-item/index.js
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
import { link } from '../mixins/link';
|
||||
import { VantComponent } from '../common/component';
|
||||
import { addUnit } from '../common/utils';
|
||||
VantComponent({
|
||||
relation: {
|
||||
name: 'grid',
|
||||
type: 'ancestor',
|
||||
linked(parent) {
|
||||
this.parent = parent;
|
||||
}
|
||||
},
|
||||
mixins: [link],
|
||||
props: {
|
||||
icon: String,
|
||||
dot: Boolean,
|
||||
info: null,
|
||||
text: String,
|
||||
useSlot: Boolean
|
||||
},
|
||||
mounted() {
|
||||
this.updateStyle();
|
||||
},
|
||||
methods: {
|
||||
updateStyle() {
|
||||
if (!this.parent) {
|
||||
return;
|
||||
}
|
||||
const { data, children } = this.parent;
|
||||
const { columnNum, border, square, gutter, clickable, center } = data;
|
||||
const width = `${100 / columnNum}%`;
|
||||
const styleWrapper = [];
|
||||
styleWrapper.push(`width: ${width}`);
|
||||
if (square) {
|
||||
styleWrapper.push(`padding-top: ${width}`);
|
||||
}
|
||||
if (gutter) {
|
||||
const gutterValue = addUnit(gutter);
|
||||
styleWrapper.push(`padding-right: ${gutterValue}`);
|
||||
const index = children.indexOf(this);
|
||||
if (index >= columnNum) {
|
||||
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,
|
||||
gutter,
|
||||
clickable
|
||||
});
|
||||
},
|
||||
onClick() {
|
||||
this.$emit('click');
|
||||
this.jumpLink();
|
||||
}
|
||||
}
|
||||
});
|
||||
6
utils/dist/grid-item/index.json
vendored
Normal file
6
utils/dist/grid-item/index.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"van-icon": "../icon/index"
|
||||
}
|
||||
}
|
||||
22
utils/dist/grid-item/index.wxml
vendored
Normal file
22
utils/dist/grid-item/index.wxml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<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' : '' }}"
|
||||
style="{{ contentStyle }}"
|
||||
>
|
||||
<block wx:if="{{ useSlot }}">
|
||||
<slot />
|
||||
</block>
|
||||
<block wx:else>
|
||||
<view class="van-grid-item__icon">
|
||||
<van-icon wx:if="{{ icon }}" name="{{ icon }}" dot="{{ dot }}" info="{{ info }}" />
|
||||
<slot wx:else name="icon"></slot>
|
||||
</view>
|
||||
<view class="van-grid-item__text">
|
||||
<text wx:if="{{ text }}">{{ text }}</text>
|
||||
<slot wx:else name="text"></slot>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
1
utils/dist/grid-item/index.wxss
vendored
Normal file
1
utils/dist/grid-item/index.wxss
vendored
Normal file
@@ -0,0 +1 @@
|
||||
@import '../common/index.wxss';.van-grid-item{position:relative;float:left;box-sizing:border-box}.van-grid-item--square{height:0}.van-grid-item__content{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;box-sizing:border-box;height:100%;padding:16px 8px;padding:var(--grid-item-content-padding,16px 8px);background-color:#fff;background-color:var(--grid-item-content-background-color,#fff)}.van-grid-item__content:after{z-index:1;border-width:0 1px 1px 0;border-bottom-width:var(--border-width-base,1px);border-right-width:var(--border-width-base,1px);border-top-width:0}.van-grid-item__content--surround:after{border-width:1px;border-width:var(--border-width-base,1px)}.van-grid-item__content--center{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-grid-item__content--square{position:absolute;top:0;right:0;left:0}.van-grid-item__content--clickable:active{background-color:#f2f3f5;background-color:var(--grid-item-content-active-color,#f2f3f5)}.van-grid-item__icon{font-size:26px;font-size:var(--grid-item-icon-size,26px)}.van-grid-item__text{word-wrap:break-word;color:#646566;color:var(--grid-item-text-color,#646566);font-size:12px;font-size:var(--grid-item-text-font-size,12px)}
|
||||
Reference in New Issue
Block a user