Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7-Res
提交
6ec04ae4
提交
6ec04ae4
编写于
8月 31, 2020
作者:
zhujiamin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增loading组件
上级
0a491402
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
140 行增加
和
31 行删除
+140
-31
app-loading.less
src/ibiz-core/utils/loading/app-loading.less
+67
-0
app-loading.vue
src/ibiz-core/utils/loading/app-loading.vue
+33
-0
loading.ts
src/ibiz-core/utils/loading/loading.ts
+40
-31
未找到文件。
src/ibiz-core/utils/loading/app-loading.less
0 → 100644
浏览文件 @
6ec04ae4
.cover{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0);
z-index: 9999;
.loading{
position: absolute;
top: 50%;
left: 43%;
transform:translateY(-50%);
width: 150px;
height: 15px;
}
.loading span{
display: inline-block;
width: 10px;
height: 10px;
margin-right: 5px;
border-radius: 50%;
background: #3be8b0;
-webkit-animation: load 1.04s ease infinite;
}
.loading span:nth-child(2){
background: #1aafd0;
}
.loading span:nth-child(3){
background: #6a67ce;
}
.loading span:nth-child(4){
background: #ffb900;
}
.loading span:last-child{
margin-right: 0px;
}
@-webkit-keyframes load{
0%{
opacity: 1;
transform: scale(1);
}
50%{
transform: scale(0);
}
75%{
transform: scale(0.5);
}
100%{
opacity: 0.5;
transform: scale(1);
}
}
.loading span:nth-child(1){
-webkit-animation-delay:0.13s;
}
.loading span:nth-child(2){
-webkit-animation-delay:0.26s;
}
.loading span:nth-child(3){
-webkit-animation-delay:0.39s;
}
.loading span:nth-child(4){
-webkit-animation-delay:0.52s;
}
}
\ No newline at end of file
src/ibiz-core/utils/loading/app-loading.vue
0 → 100644
浏览文件 @
6ec04ae4
<
template
>
<div
class=
"cover"
>
<div
class=
"loading"
>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Prop
,
Provide
,
Emit
,
Watch
}
from
"vue-property-decorator"
;
@
Component
({
components
:
{}
})
export
default
class
AppLoading
extends
Vue
{
}
</
script
>
<
style
lang=
"less"
>
@import "./app-loading.less";
</
style
>
src/ibiz-core/utils/loading/loading.ts
浏览文件 @
6ec04ae4
import
i18n
from
'@/locale'
;
import
i18n
from
'@/locale'
;
import
Vue
from
'vue'
;
import
AppLoading
from
"./app-loading.vue"
;
/**
/**
* 全局加载动画工具类
* 全局加载动画工具类
*
*
...
@@ -17,47 +18,55 @@ export class Loading {
...
@@ -17,47 +18,55 @@ export class Loading {
protected
static
loadingCount
:
number
=
0
;
protected
static
loadingCount
:
number
=
0
;
/**
/**
*
加载对象
*
vue 实例
*
*
* @private
* @private
* @static
* @type {Vue}
* @type {*}
* @memberof Loading
* @memberof Loading
*/
*/
private
static
loading
:
any
=
null
;
private
static
vueExample
?:
Vue
;
/**
/**
* 显示加载动画
* 显示加载动画
*
*
* @static
* @static
* @param {(any | string)} [message]
* @memberof Loading
* @memberof Loading
*/
*/
public
static
show
(
message
?:
any
|
string
):
void
{
public
static
show
():
void
{
if
(
this
.
loadingCount
===
0
)
{
if
(
this
.
loadingCount
===
0
)
{
this
.
loading
=
document
.
createElement
(
'ion-loading'
);
let
component
=
AppLoading
;
this
.
loading
.
message
=
message
?
message
:
i18n
.
t
(
'app.loadding'
);;
let
vm
:
any
=
new
Vue
({
document
.
body
.
appendChild
(
this
.
loading
);
i18n
:
i18n
,
this
.
loading
.
present
();
render
(
h
)
{
return
h
(
component
);
},
}).
$mount
();
this
.
vueExample
=
vm
;
let
app
=
document
.
getElementById
(
"app"
);
if
(
app
){
app
.
appendChild
(
vm
.
$el
);
}
}
this
.
loadingCount
++
;
}
}
this
.
loadingCount
++
;
}
/**
/**
* 隐藏加载动画
* 隐藏加载动画
*
*
* @memberof DragDesignBase
* @memberof DragDesignBase
*/
*/
public
static
hidden
():
void
{
public
static
hidden
():
void
{
this
.
loadingCount
--
;
this
.
loadingCount
--
;
if
(
this
.
loadingCount
<
0
)
{
if
(
this
.
loadingCount
<
0
)
{
this
.
loadingCount
=
0
;
this
.
loadingCount
=
0
;
}
}
if
(
this
.
loadingCount
===
0
)
{
if
(
this
.
loadingCount
===
0
)
{
if
(
this
.
loading
)
{
let
app
=
document
.
getElementById
(
"app"
);
this
.
loading
.
dismiss
();
if
(
app
){
this
.
loading
=
null
;
if
(
this
.
vueExample
){
}
app
.
removeChild
(
this
.
vueExample
.
$el
);
}
}
}
}
}
}
}
}
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录