chore: change some names (#2757)

This commit is contained in:
Waiter 2020-02-14 14:35:38 +08:00 committed by GitHub
parent 26698e895a
commit 438d97eca3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 43 additions and 22 deletions

View File

@ -8,7 +8,7 @@ VantComponent({
classes: ['hover-class', 'loading-class'],
data: {
style: ''
baseStyle: ''
},
props: {
@ -59,8 +59,8 @@ VantComponent({
}
}
if (style !== this.data.style) {
this.setData({ style });
if (style !== this.data.baseStyle) {
this.setData({ baseStyle: style });
}
}
}

View File

@ -5,7 +5,7 @@
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
hover-class="van-button--active hover-class"
lang="{{ lang }}"
style="{{ style }} {{ customStyle }}"
style="{{ baseStyle }} {{ customStyle }}"
open-type="{{ openType }}"
business-id="{{ businessId }}"
session-from="{{ sessionFrom }}"

View File

@ -12,16 +12,16 @@ VantComponent({
},
data: {
style: ''
viewStyle: ''
},
methods: {
setGutter(gutter: number) {
const padding = `${gutter / 2}px`;
const style = gutter ? `padding-left: ${padding}; padding-right: ${padding};` : '';
const viewStyle = gutter ? `padding-left: ${padding}; padding-right: ${padding};` : '';
if (style !== this.data.style) {
this.setData({ style });
if (viewStyle !== this.data.viewStyle) {
this.setData({ viewStyle });
}
}
}

View File

@ -2,7 +2,7 @@
<view
class="custom-class {{ utils.bem('col', [span]) }} {{ offset ? 'van-col--offset-' + offset : '' }}"
style="{{ style }}"
style="{{ viewStyle }}"
>
<slot />
</view>

View File

@ -21,6 +21,10 @@ VantComponent({
useSlot: Boolean
},
data: {
viewStyle: '',
},
mounted() {
this.updateStyle();
},
@ -65,7 +69,7 @@ VantComponent({
}
this.setData({
style: styleWrapper.join('; '),
viewStyle: styleWrapper.join('; '),
contentStyle,
center,
border,

View File

@ -1,6 +1,6 @@
<wxs src="../wxs/utils.wxs" module="utils" />
<view class="{{ utils.bem('grid-item', { square }) }}" style="{{ style }}" bindtap="onClick">
<view class="{{ utils.bem('grid-item', { square }) }}" style="{{ viewStyle }}" bindtap="onClick">
<view
class="{{ utils.bem('grid-item__content', { center, square, clickable, surround: border && gutter }) }} {{ border ? 'van-hairline--surround' : '' }}"
style="{{ contentStyle }}"

View File

@ -46,6 +46,10 @@ VantComponent({
}
},
data: {
viewStyle: '',
},
beforeCreate() {
this.children = [];
},
@ -54,7 +58,7 @@ VantComponent({
const { gutter } = this.data;
if (gutter) {
this.setData({
style: `padding-left: ${addUnit(gutter)}`
viewStyle: `padding-left: ${addUnit(gutter)}`
});
}
},

View File

@ -1,3 +1,3 @@
<view class="van-grid {{ border && !gutter ? 'van-hairline--top' : '' }}" style="{{ style }}">
<view class="van-grid {{ border && !gutter ? 'van-hairline--top' : '' }}" style="{{ viewStyle }}">
<slot />
</view>

View File

@ -56,7 +56,8 @@ VantComponent({
data: {
error: false,
loading: true
loading: true,
viewStyle: '',
},
mounted() {
@ -88,7 +89,7 @@ VantComponent({
style += `border-radius: ${addUnit(radius)};`;
}
this.setData({ style });
this.setData({ viewStyle: style });
},
onLoad(event) {

View File

@ -1,7 +1,7 @@
<wxs src="../wxs/utils.wxs" module="utils" />
<view
style="{{ style }}"
style="{{ viewStyle }}"
class="custom-class {{ utils.bem('image', { round })}}"
bind:tap="onClick"
>

View File

@ -10,5 +10,9 @@ VantComponent({
},
size: String,
textSize: String
}
},
data: {
array12: Array.from({ length: 12 }),
},
});

View File

@ -7,7 +7,7 @@
>
<view
wx:if="{{ type === 'spinner' }}"
wx:for="item in 12"
wx:for="{{ array12 }}"
wx:key="index"
class="van-loading__dot"
/>

View File

@ -29,6 +29,10 @@ VantComponent({
}
},
data: {
show: false,
},
created() {
const { statusBarHeight } = wx.getSystemInfoSync();
this.setData({ statusBarHeight });

View File

@ -18,6 +18,10 @@ VantComponent({
}
},
data: {
viewStyle: '',
},
mounted() {
if (this.data.gutter) {
this.setGutter();
@ -28,11 +32,11 @@ VantComponent({
setGutter() {
const { gutter } = this.data;
const margin = `-${Number(gutter) / 2}px`;
const style = gutter
const viewStyle = gutter
? `margin-right: ${margin}; margin-left: ${margin};`
: '';
this.setData({ style });
this.setData({ viewStyle });
this.getRelationNodes('../col/index').forEach(col => {
col.setGutter(this.data.gutter);
});

View File

@ -1,3 +1,3 @@
<view class="custom-class van-row" style="{{ style }}">
<view class="custom-class van-row" style="{{ viewStyle }}">
<slot />
</view>