mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
Loading 支持 slot 传递加载文案 (#1977)
This commit is contained in:
parent
33489665a1
commit
d23777b780
@ -7,3 +7,22 @@
|
|||||||
<van-loading custom-class="loading" type="spinner" />
|
<van-loading custom-class="loading" type="spinner" />
|
||||||
<van-loading custom-class="loading shadow" type="spinner" color="#fff" />
|
<van-loading custom-class="loading shadow" type="spinner" color="#fff" />
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
|
||||||
|
<demo-block title="加载文案" padding>
|
||||||
|
<van-loading custom-class="loading">
|
||||||
|
加载中……
|
||||||
|
</van-loading>
|
||||||
|
</demo-block>
|
||||||
|
|
||||||
|
<demo-block title="加载文案大小调整" padding>
|
||||||
|
<van-loading custom-class="loading" text-size="12" vertical>
|
||||||
|
加载中……
|
||||||
|
</van-loading>
|
||||||
|
</demo-block>
|
||||||
|
|
||||||
|
|
||||||
|
<demo-block title="加载文案竖直排列" padding>
|
||||||
|
<van-loading custom-class="loading" vertical>
|
||||||
|
加载中……
|
||||||
|
</van-loading>
|
||||||
|
</demo-block>
|
||||||
|
@ -35,6 +35,15 @@
|
|||||||
| color | 颜色 | *string* | `#c9c9c9` | - |
|
| color | 颜色 | *string* | `#c9c9c9` | - |
|
||||||
| type | 类型,可选值为 `spinner` | *string* | `circular` | - |
|
| type | 类型,可选值为 `spinner` | *string* | `circular` | - |
|
||||||
| size | 加载图标大小,默认单位为 `px` | *string \| number* | `30px` | - |
|
| size | 加载图标大小,默认单位为 `px` | *string \| number* | `30px` | - |
|
||||||
|
| text-size | 文字大小,默认单位为为 `px` | *string \| number* | `14px` | 1.0 |
|
||||||
|
| vertical | 是否垂直排列图标和文字内容 | *boolean* | `false` | 1.0 |
|
||||||
|
|
||||||
|
|
||||||
|
### Slots
|
||||||
|
|
||||||
|
| 名称 | 说明 |
|
||||||
|
| --- | --- |
|
||||||
|
| default | 加载文案 |
|
||||||
|
|
||||||
### 外部样式类
|
### 外部样式类
|
||||||
|
|
||||||
|
@ -1,11 +1,20 @@
|
|||||||
@import '../common/style/var.less';
|
@import '../common/style/var.less';
|
||||||
|
|
||||||
.van-loading {
|
.van-loading {
|
||||||
position: relative;
|
&__wrapper {
|
||||||
z-index: 0;
|
position: relative;
|
||||||
display: inline-block;
|
z-index: 0;
|
||||||
line-height: 0;
|
display: inline-block;
|
||||||
vertical-align: middle;
|
line-height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
&--vertical {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
&__spinner {
|
&__spinner {
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -28,6 +37,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__text {
|
||||||
|
margin-left: 8px;
|
||||||
|
color: #969799;
|
||||||
|
|
||||||
|
&--vertical {
|
||||||
|
margin: 8px 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&__dot {
|
&__dot {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -14,11 +14,17 @@ VantComponent({
|
|||||||
color: {
|
color: {
|
||||||
type: String,
|
type: String,
|
||||||
value: '#c9c9c9'
|
value: '#c9c9c9'
|
||||||
}
|
},
|
||||||
|
textSize: {
|
||||||
|
type: String,
|
||||||
|
observer: 'setTextSizeWithUnit'
|
||||||
|
},
|
||||||
|
vertical: Boolean
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
sizeWithUnit: '30px'
|
sizeWithUnit: '30px',
|
||||||
|
textSizeWithUnit: '14px'
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
@ -26,6 +32,12 @@ VantComponent({
|
|||||||
this.setData({
|
this.setData({
|
||||||
sizeWithUnit: addUnit(size)
|
sizeWithUnit: addUnit(size)
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
setTextSizeWithUnit(size: string | number): void {
|
||||||
|
this.set({
|
||||||
|
textSizeWithUnit: addUnit(size)
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,16 +1,24 @@
|
|||||||
<view
|
<view class="van-loading {{vertical ? 'van-loading--vertical' : ''}}">
|
||||||
class="van-loading custom-class"
|
|
||||||
style="width: {{ sizeWithUnit }}; height: {{ sizeWithUnit }}"
|
|
||||||
>
|
|
||||||
<view
|
<view
|
||||||
class="van-loading__spinner van-loading__spinner--{{ type }}"
|
class="van-loading__wrapper custom-class"
|
||||||
style="color: {{ color }};"
|
style="width: {{ sizeWithUnit }}; height: {{ sizeWithUnit }}"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
wx:if="{{ type === 'spinner' }}"
|
class="van-loading__spinner van-loading__spinner--{{ type }}"
|
||||||
wx:for="item in 12"
|
style="color: {{ color }};"
|
||||||
wx:key="index"
|
>
|
||||||
class="van-loading__dot"
|
<view
|
||||||
/>
|
wx:if="{{ type === 'spinner' }}"
|
||||||
|
wx:for="item in 12"
|
||||||
|
wx:key="index"
|
||||||
|
class="van-loading__dot"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
style="font-size: {{textSizeWithUnit}};"
|
||||||
|
class="van-loading__text {{vertical ? 'van-loading__text--vertical' : ''}}"
|
||||||
|
>
|
||||||
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
Loading…
x
Reference in New Issue
Block a user