Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
ac83d489
提交
ac83d489
编写于
9月 17, 2020
作者:
Mosher
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
视图消息组件完善
上级
ca0502a3
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
82 行增加
和
135 行删除
+82
-135
app-alert.vue
src/components/app-alert/app-alert.vue
+82
-135
未找到文件。
src/components/app-alert/app-alert.vue
浏览文件 @
ac83d489
<
template
>
<el-alert
v-if=
"hasContent"
v-show=
"showState"
:title=
"title"
:description=
"message"
:type=
"type"
:closable=
"closable"
@
close=
"alertClose"
>
</el-alert>
<div
class=
"app-alert"
>
<template
v-if=
"items && items.length > 0"
>
<template
v-for=
"(item, index) in items"
>
<template
v-if=
"item.hasContent && !Object.is('POP', item.position)"
>
<el-alert
:key=
"index"
v-show=
"item.showState"
:title=
"item.title"
:type=
"item.type"
:closable=
"item.closable"
@
close=
"alertClose(item)"
>
<template
slot
>
<span
v-html=
"item.content"
></span>
</
template
>
</el-alert>
</template>
</template>
</template>
</div>
</template>
<
script
lang=
"ts"
>
...
...
@@ -40,56 +50,8 @@ export default class AppAlert extends Vue {
* @type {any}
* @memberof AppAlert
*/
public
data
:
any
=
{}
;
public
items
:
any
[]
=
[]
;
/**
* 视图消息标题
*
* @type {any}
* @memberof AppAlert
*/
public
title
:
string
=
''
;
/**
* 视图消息内容
*
* @type {any}
* @memberof AppAlert
*/
public
message
:
string
=
''
;
/**
* 视图消息类型
*
* @type {any}
* @memberof AppAlert
*/
public
type
:
string
=
''
;
/**
* 视图消息关闭模式
*
* @type {any}
* @memberof AppAlert
*/
public
closeMode
:
any
=
''
;
/**
* 视图消息是否可关闭
*
* @type {boolean}
* @memberof AppAlert
*/
public
closable
:
boolean
=
true
;
/**
* 是否显示
*
* @type {boolean}
* @memberof AppAlert
*/
public
showState
:
boolean
=
true
;
/**
* 视图消息服务
*
...
...
@@ -98,22 +60,6 @@ export default class AppAlert extends Vue {
*/
public
viewMessageService
=
ViewMessageService
.
getInstance
();
/**
* 是否存在内容
*
* @type {boolean}
* @memberof AppAlert
*/
public
hasContent
:
boolean
=
false
;
/**
* 显示时长(秒)
*
* @type {boolean}
* @memberof AppAlert
*/
public
duration
:
number
=
3
;
/**
* Vue生命周期
*
...
...
@@ -121,102 +67,94 @@ export default class AppAlert extends Vue {
*/
public
created
()
{
this
.
getData
().
then
((
result
:
any
)
=>
{
if
(
this
.
data
)
{
this
.
afterCreated
()
;
if
(
!
this
.
items
)
{
return
;
}
})
}
/**
*
组件创建之前
*
获取视图消息对象
*
* @memberof AppAlert
*/
public
afterCreated
()
{
let
flag
:
boolean
=
true
;
// 不存在内容则不显示
if
(
!
this
.
data
.
content
&&
!
this
.
data
.
title
)
{
return
;
}
this
.
hasContent
=
true
;
// 视图消息是否支持删除
if
(
!
this
.
data
.
isEnableRemove
)
{
this
.
closable
=
false
;
}
flag
=
this
.
handleCloseMode
(
flag
);
this
.
handlePosition
(
flag
);
public
async
getData
()
{
let
response
:
any
=
await
this
.
viewMessageService
.
getViewMessageByTag
(
this
.
tag
,
null
,
null
)
if
(
response
&&
response
.
length
>
0
)
{
response
.
forEach
((
item
:
any
)
=>
{
let
tempData
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
item
));
if
(
!
tempData
.
type
)
{
tempData
.
type
=
"info"
;
}
// 判断是否存在内容
this
.
handleItemHasContent
(
tempData
);
tempData
.
closable
=
tempData
.
isEnableRemove
;
let
flag
=
this
.
handleItemCloseMode
(
tempData
);
this
.
handleItemPosition
(
tempData
,
flag
);
this
.
items
.
push
(
tempData
);
});
}
}
/**
*
获取视图消息对象
*
处理数据项是否存在内容
*
* @memberof AppAlert
*/
public
async
getData
()
{
let
tempData
:
any
;
let
response
:
any
=
await
this
.
viewMessageService
.
getViewMessageByTag
(
this
.
tag
,
null
,
null
)
if
(
response
)
{
tempData
=
response
[
0
];
if
(
tempData
.
type
)
{
if
(
Object
.
is
(
'WARN'
,
tempData
.
type
))
{
tempData
.
type
=
"warning"
;
}
if
(
Object
.
is
(
"ERROR"
,
tempData
.
type
))
{
tempData
.
type
=
"error"
;
}
}
else
{
tempData
.
type
=
"info"
;
}
this
.
data
=
tempData
;
}
public
handleItemHasContent
(
data
:
any
)
{
data
.
hasContent
=
true
;
if
(
!
data
.
title
&&
!
data
.
content
)
{
data
.
hasContent
=
false
;
}
}
/**
* 处理关闭模式
* 处理
数据
关闭模式
*
* @param flag 默认删除标记
* @memberof AppAlert
*/
public
handleCloseMode
(
flag
:
boolean
)
{
if
(
this
.
data
.
closeMode
)
{
if
(
Object
.
is
(
'default'
,
this
.
data
.
closeMode
))
{
const
id
=
this
.
$store
.
getters
.
getViewMessage
(
this
.
data
.
codename
);
public
handleItemCloseMode
(
data
:
any
)
{
let
flag
=
true
;
data
.
showState
=
true
;
if
(
data
.
closeMode
||
Object
.
is
(
'0'
,
data
.
closeMode
))
{
if
(
data
.
closeMode
==
1
)
{
const
id
=
this
.
$store
.
getters
.
getViewMessage
(
data
.
codename
);
if
(
id
)
{
this
.
showState
=
false
;
data
.
showState
=
false
;
flag
=
false
;
}
}
if
(
Object
.
is
(
'
notclose'
,
this
.
data
.
closeMode
))
{
this
.
closable
=
false
;
if
(
Object
.
is
(
'
0'
,
data
.
closeMode
))
{
data
.
closable
=
false
;
}
}
return
flag
;
}
/**
* 处理显示位置
* 处理
数据
显示位置
*
* @memberof AppAlert
*/
public
handlePosition
(
flag
:
boolean
)
{
if
(
this
.
data
.
position
)
{
if
(
flag
&&
Object
.
is
(
'POP'
,
this
.
data
.
position
))
{
this
.
showState
=
false
;
public
handleItemPosition
(
data
:
any
,
flag
:
boolean
)
{
if
(
data
.
position
)
{
if
(
flag
&&
Object
.
is
(
'POP'
,
data
.
position
))
{
const
h
=
this
.
$createElement
;
data
.
showState
=
false
;
setTimeout
(()
=>
{
this
.
$message
({
dangerouslyUseHTMLString
:
true
,
message
:
"<p class='title'><strong>"
+
this
.
data
.
title
+
"</strong></p><p>"
+
this
.
data
.
content
+
"</p>"
,
type
:
this
.
data
.
type
,
showClose
:
this
.
closable
,
customClass
:
data
.
codename
+
","
+
data
.
closeMode
,
message
:
h
(
'div'
,[
h
(
'p'
,
data
.
title
),
h
(
'p'
,
data
.
content
)
]),
type
:
data
.
type
,
showClose
:
data
.
closable
,
onClose
:
this
.
alertClose
,
})
},
0
)
}
else
{
this
.
title
=
this
.
data
.
title
;
this
.
message
=
this
.
data
.
content
;
this
.
type
=
this
.
data
.
type
;
}
}
}
}
/**
...
...
@@ -224,9 +162,18 @@ export default class AppAlert extends Vue {
*
* @memberof AppAlert
*/
public
alertClose
()
{
if
(
this
.
data
.
closeMode
&&
Object
.
is
(
"default"
,
this
.
data
.
closeMode
))
{
const
args
=
{
tag
:
this
.
data
.
codename
,
id
:
this
.
data
.
id
};
public
alertClose
(
data
:
any
)
{
if
(
data
.
customClass
)
{
let
tempArr
:
any
[]
=
data
.
customClass
.
toString
().
split
(
','
);
if
(
tempArr
&&
tempArr
.
length
>
0
)
{
if
(
Object
.
is
(
"1"
,
tempArr
[
1
]))
{
const
args
=
{
tag
:
tempArr
[
0
],
id
:
data
.
customClass
};
this
.
$store
.
commit
(
'addViewMessage'
,
args
);
}
}
}
if
(
data
.
closeMode
&&
data
.
closeMode
==
1
)
{
const
args
=
{
tag
:
data
.
codename
,
id
:
data
.
id
};
this
.
$store
.
commit
(
'addViewMessage'
,
args
);
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录