切换导航条
此项目
正在载入...
登录
李涵
/
sami
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
lihan
2018-10-15 17:09:36 +0800
提交
571f135744b59843be18103562f2b92597a0fd05
1 个父辈
b4b48c7e
1 个管道 的构建
通过
耗费 0 秒
赠送优惠券
变更
2
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
41 行增加
和
1 行删除
app/config.php
simplewind/thinkphp/tpl/dispatch_jump2.tpl
app/config.php
查看文件 @
571f135
...
...
@@ -127,7 +127,7 @@ $configs = [
// 视图输出字符串内容替换
'view_replace_str'
=>
[],
// 默认跳转页面对应的模板文件
'dispatch_success_tmpl'
=>
THINK_PATH
.
'tpl'
.
DS
.
'dispatch_jump.tpl'
,
'dispatch_success_tmpl'
=>
THINK_PATH
.
'tpl'
.
DS
.
'dispatch_jump
2
.tpl'
,
'dispatch_error_tmpl'
=>
THINK_PATH
.
'tpl'
.
DS
.
'dispatch_jump.tpl'
,
// +----------------------------------------------------------------------
// | 异常及错误设置
...
...
simplewind/thinkphp/tpl/dispatch_jump2.tpl
0 → 100644
查看文件 @
571f135
{__NOLAYOUT__}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<title>
跳转提示
</title>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<meta
name=
"HandheldFriendly"
content=
"true"
/>
<meta
name=
"MobileOptimized"
content=
"320"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/plugins/yim_e404/css/dandelion.css"
media=
"screen"
/>
</head>
<body>
<div
id=
"da-wrapper"
class=
"fluid"
>
<!-- Content -->
<div
id=
"da-content"
>
<!-- Container -->
<div
class=
"da-container clearfix"
>
<div
id=
"da-error-wrapper"
>
<div
id=
"da-error-pin"
></div>
<div
id=
"da-error-code"
>
success
<span></span></div>
<h1
class=
"da-error-heading"
>
<?php echo(strip_tags($msg));?>
</h1>
<p>
页面自动:
<a
id=
"href"
href=
"<?php echo($url);?>"
>
跳转
</a>
等待时间:
<b
id=
"wait"
>
<?php echo($wait);?>
</b>
</div>
</div>
</div>
</div>
<script
type=
"text/javascript"
>
(
function
(){
var
wait
=
document
.
getElementById
(
'wait'
),
href
=
document
.
getElementById
(
'href'
).
href
;
var
interval
=
setInterval
(
function
(){
var
time
=
--
wait
.
innerHTML
;
if
(
time
<=
0
)
{
location
.
href
=
href
;
clearInterval
(
interval
);
};
},
1000
);
})();
</script>
</body>
</html>
...
...
请
注册
或
登录
后发表评论