mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Loading): optimize styles (#2216)
This commit is contained in:
parent
83597f5c86
commit
7cb9a4979d
@ -1,5 +1,10 @@
|
||||
@import '../common/style/var.less';
|
||||
|
||||
:host {
|
||||
font-size: 0;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.van-loading {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
|
@ -3,18 +3,15 @@ import { addUnit } from '../common/utils';
|
||||
|
||||
VantComponent({
|
||||
props: {
|
||||
color: String,
|
||||
vertical: Boolean,
|
||||
size: {
|
||||
type: String,
|
||||
observer: 'setSizeWithUnit'
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
value: 'circular'
|
||||
},
|
||||
color: {
|
||||
size: {
|
||||
type: String,
|
||||
value: '#c9c9c9'
|
||||
observer: 'setSizeWithUnit'
|
||||
},
|
||||
textSize: {
|
||||
type: String,
|
||||
@ -22,11 +19,6 @@ VantComponent({
|
||||
}
|
||||
},
|
||||
|
||||
data: {
|
||||
sizeWithUnit: '30px',
|
||||
textSizeWithUnit: '14px'
|
||||
},
|
||||
|
||||
methods: {
|
||||
setSizeWithUnit(size: string | number): void {
|
||||
this.setData({
|
||||
|
@ -1,4 +1,4 @@
|
||||
<view class="custom-class van-loading van-loading--{{ type }} {{ vertical ? 'van-loading--vertical' : '' }}">
|
||||
<view class="custom-class van-loading {{ vertical ? 'van-loading--vertical' : '' }}">
|
||||
<view
|
||||
class="van-loading__spinner van-loading__spinner--{{ type }}"
|
||||
style="color: {{ color }}; width: {{ sizeWithUnit }}; height: {{ sizeWithUnit }}"
|
||||
@ -10,10 +10,7 @@
|
||||
class="van-loading__dot"
|
||||
/>
|
||||
</view>
|
||||
<view
|
||||
style="font-size: {{ textSizeWithUnit }};"
|
||||
class="van-loading__text {{vertical ? 'van-loading__text--vertical' : ''}}"
|
||||
>
|
||||
<view class="van-loading__text" style="font-size: {{ textSizeWithUnit }};">
|
||||
<slot />
|
||||
</view>
|
||||
</view>
|
||||
|
Loading…
x
Reference in New Issue
Block a user