You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.3 KiB
106 lines
3.3 KiB
<template>
|
|
<uv-transition
|
|
:show="loading"
|
|
:custom-style="{
|
|
position: 'fixed',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
zIndex: 999,
|
|
backgroundColor: bgColor,
|
|
display: 'flex'
|
|
}"
|
|
>
|
|
<view class="uv-loading-page">
|
|
<view class="uv-loading-page__warpper">
|
|
<view class="uv-loading-page__warpper__loading-icon">
|
|
<image
|
|
v-if="image"
|
|
:src="image"
|
|
class="uv-loading-page__warpper__loading-icon__img"
|
|
mode="widthFit"
|
|
:style="{
|
|
width: $uv.addUnit(iconSize),
|
|
height: $uv.addUnit(iconSize)
|
|
}"
|
|
></image>
|
|
<uv-loading-icon
|
|
v-else
|
|
:mode="loadingMode"
|
|
:size="$uv.addUnit(iconSize)"
|
|
:color="loadingColor"
|
|
></uv-loading-icon>
|
|
</view>
|
|
<slot>
|
|
<text
|
|
class="uv-loading-page__warpper__text"
|
|
:style="{
|
|
fontSize: $uv.addUnit(fontSize),
|
|
color: color,
|
|
}">{{ loadingText }}</text
|
|
>
|
|
</slot>
|
|
</view>
|
|
</view>
|
|
</uv-transition>
|
|
</template>
|
|
|
|
<script>
|
|
import mpMixin from '../../libs/mixin/mpMixin.js'
|
|
import mixin from '../../libs/mixin/mixin.js'
|
|
import props from "./props.js";
|
|
/**
|
|
* loadingPage 加载动画
|
|
* @description 警此组件为一个小动画,目前用在uvui的loadmore加载更多和switch开关等组件的正在加载状态场景。
|
|
* @tutorial https://www.uvui.cn/components/loading.html
|
|
* @property {String | Number} loadingText 提示内容 (默认 '正在加载' )
|
|
* @property {String} image 文字上方用于替换loading动画的图片
|
|
* @property {String} loadingMode 加载动画的模式,circle-圆形,spinner-花朵形,semicircle-半圆形 (默认 'circle' )
|
|
* @property {Boolean} loading 是否加载中 (默认 false )
|
|
* @property {String} bgColor 背景色 (默认 '#ffffff' )
|
|
* @property {String} color 文字颜色 (默认 '#C8C8C8' )
|
|
* @property {String | Number} fontSize 文字大小 (默认 19 )
|
|
* @property {String | Number} iconSize 图标大小 (默认 28 )
|
|
* @property {String} loadingColor 加载中图标的颜色,只能rgb或者十六进制颜色值 (默认 '#C8C8C8' )
|
|
* @example <uv-loading mode="circle"></uv-loading>
|
|
*/
|
|
export default {
|
|
name: "uv-loading-page",
|
|
mixins: [mpMixin, mixin, props]
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../../libs/css/components.scss';
|
|
$text-color: rgb(200, 200, 200) !default;
|
|
$text-size: 19px !default;
|
|
$uv-loading-icon-margin-bottom: 10px !default;
|
|
.uv-loading-page {
|
|
@include flex(column);
|
|
flex: 1;
|
|
align-items: center;
|
|
justify-content: center;
|
|
&__warpper {
|
|
margin-top: -150px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
/* #ifndef APP-NVUE */
|
|
color: $text-color;
|
|
font-size: $text-size;
|
|
/* #endif */
|
|
@include flex(column);
|
|
&__loading-icon {
|
|
margin-bottom: $uv-loading-icon-margin-bottom;
|
|
&__img {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
}
|
|
&__text {
|
|
font-size: $text-size;
|
|
color: $text-color;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|