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'], classes: ['hover-class', 'loading-class'],
data: { data: {
style: '' baseStyle: ''
}, },
props: { props: {
@ -59,8 +59,8 @@ VantComponent({
} }
} }
if (style !== this.data.style) { if (style !== this.data.baseStyle) {
this.setData({ style }); 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' : '' }}" 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" hover-class="van-button--active hover-class"
lang="{{ lang }}" lang="{{ lang }}"
style="{{ style }} {{ customStyle }}" style="{{ baseStyle }} {{ customStyle }}"
open-type="{{ openType }}" open-type="{{ openType }}"
business-id="{{ businessId }}" business-id="{{ businessId }}"
session-from="{{ sessionFrom }}" session-from="{{ sessionFrom }}"
@ -65,4 +65,4 @@ function get(type, color,plain) {
} }
module.exports = get; module.exports = get;
</wxs> </wxs>

View File

@ -12,16 +12,16 @@ VantComponent({
}, },
data: { data: {
style: '' viewStyle: ''
}, },
methods: { methods: {
setGutter(gutter: number) { setGutter(gutter: number) {
const padding = `${gutter / 2}px`; 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) { if (viewStyle !== this.data.viewStyle) {
this.setData({ style }); this.setData({ viewStyle });
} }
} }
} }

View File

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

View File

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

View File

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

View File

@ -46,6 +46,10 @@ VantComponent({
} }
}, },
data: {
viewStyle: '',
},
beforeCreate() { beforeCreate() {
this.children = []; this.children = [];
}, },
@ -54,7 +58,7 @@ VantComponent({
const { gutter } = this.data; const { gutter } = this.data;
if (gutter) { if (gutter) {
this.setData({ 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 /> <slot />
</view> </view>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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