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
提交
a024b221
提交
a024b221
编写于
9月 07, 2020
作者:
Neuromancer255
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert "错误提示中转页解决模态不能正确显示错误页"
This reverts commit
48b58e78
.
上级
a819a3fe
变更
5
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
16 行增加
和
66 行删除
+16
-66
app-register.ts
src/app-register.ts
+0
-4
404.vue
src/components/404/404.vue
+7
-2
500.vue
src/components/500/500.vue
+7
-2
app-error-transfer.vue
src/components/app-error-transfer/app-error-transfer.vue
+0
-56
interceptor.ts
src/utils/interceptor/interceptor.ts
+2
-2
未找到文件。
src/app-register.ts
浏览文件 @
a024b221
...
...
@@ -109,9 +109,5 @@ export const AppComponents = {
v
.
component
(
'app-list-index-text'
,()
=>
import
(
'@/components/app-list-index-text/app-list-index-text.vue'
));
// 富文本(模态)
v
.
component
(
'app-rich-text'
,()
=>
import
(
'@/components/app-rich-text/app-rich-text.vue'
));
// 500错误提示页
v
.
component
(
'app-500'
,()
=>
import
(
'@/components/500/500.vue'
));
// 404错误提示页
v
.
component
(
'app-404'
,()
=>
import
(
'@/components/404/404.vue'
));
},
};
\ No newline at end of file
src/components/404/404.vue
浏览文件 @
a024b221
...
...
@@ -37,13 +37,18 @@ export default class App404 extends Vue {
* 返回上一步
*/
public
back
()
{
this
.
$emit
(
"close"
,[
'back'
])
if
(
window
.
history
.
length
<=
1
)
{
this
.
$router
.
push
({
path
:
"/"
});
return
false
;
}
else
{
this
.
$router
.
go
(
-
1
);
}
}
/**
* 返回首页
*/
public
backindex
()
{
this
.
$
emit
(
"close"
,[
'goIndex'
])
this
.
$
router
.
push
({
path
:
"/"
});
}
}
</
script
>
...
...
src/components/500/500.vue
浏览文件 @
a024b221
...
...
@@ -37,13 +37,18 @@ export default class App404 extends Vue {
* 返回上一步
*/
public
back
()
{
this
.
$emit
(
"close"
,[
'back'
])
if
(
window
.
history
.
length
<=
1
)
{
this
.
$router
.
push
({
path
:
"/"
});
return
false
;
}
else
{
this
.
$router
.
go
(
-
1
);
}
}
/**
* 返回首页
*/
public
backindex
()
{
this
.
$
emit
(
"close"
,[
'goIndex'
])
this
.
$
router
.
push
({
path
:
"/"
});
}
}
</
script
>
...
...
src/components/app-error-transfer/app-error-transfer.vue
已删除
100644 → 0
浏览文件 @
a819a3fe
<
template
>
<div></div>
</
template
>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Prop
,
Provide
,
Emit
,
Watch
}
from
"vue-property-decorator"
;
@
Component
({
components
:
{}
})
export
default
class
MiddleMan
extends
Vue
{
public
created
(){
let
errorPage
=
this
.
$route
.
params
.
errorPage
;
switch
(
Number
(
errorPage
)){
case
404
:
this
.
openPopupModal
({
viewname
:
'app-404'
,
title
:
'404'
},
{},
{});
break
;
case
500
:
this
.
openPopupModal
({
viewname
:
'app-500'
,
title
:
'500'
},
{},
{});
break
;
}
}
/**
* 模态打开错误提示页面
*
* @type {string}
* @memberof AppRichTextEditor
*/
private
async
openPopupModal
(
view
:
any
,
context
:
any
,
param
:
any
):
Promise
<
any
>
{
const
result
:
any
=
await
this
.
$appmodal
.
openModal
(
view
,
context
,
param
);
if
(
result
||
Object
.
is
(
result
.
ret
,
'OK'
))
{
if
(
result
.
datas
[
0
]
===
'back'
)
{
if
(
window
.
history
.
length
<=
1
)
{
this
.
$router
.
push
({
path
:
"/"
});
}
else
{
this
.
$router
.
go
(
-
1
);
}
}
if
(
result
.
datas
[
0
]
===
'goIndex'
)
{
this
.
$router
.
push
({
path
:
"/"
});
}
}
}
}
</
script
>
<
style
>
</
style
>
\ No newline at end of file
src/utils/interceptor/interceptor.ts
浏览文件 @
a024b221
...
...
@@ -114,10 +114,10 @@ export class Interceptors {
}
if
(
res
.
status
===
404
)
{
Loading
.
hidden
();
this
.
router
.
push
({
name
:
'errorTransfer'
,
params
:{
errorPage
:
res
.
status
}
});
this
.
router
.
push
({
path
:
'/404'
});
}
else
if
(
res
.
status
===
500
)
{
Loading
.
hidden
();
this
.
router
.
push
({
name
:
'errorTransfer'
,
params
:{
errorPage
:
res
.
status
}
});
this
.
router
.
push
({
path
:
'/500'
});
}
return
Promise
.
reject
(
res
);
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录