thinkphp 中定制success和error提示跳转页面

来源:互联网 发布:普林斯顿数学指南 知乎 编辑:程序博客网 时间:2024/06/09 19:47

在thinkphp中用到$this->success()和$this->error()函数,但是这两个页面太丑,所以需要自定义一下

首先要修改配置



        'TMPL_ACTION_ERROR'=>'Tpl/myerror',        'TMPL_ACTION_SUCCESS'=>'Tpl/mysuccess',

在这里需要注意的是页面路径,该路径在模块(分组)下面的        文件夹/文件名

如我文件路径所示


如图,我在home模块下建立了Tpl文件夹,里面放我的模板文件


错误页面效果如图所示



正确页面如下图


页面html代码如下

<?php    if(C('LAYOUT_ON')) {        echo '{__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><meta http-equiv="Content-Type" content="textml; charset=utf-8" /><title>跳转提示</title><style type="text/css">*{ padding: 0; margin: 0; }body{ background: #fff; font-family: '微软雅黑'; color: #333; font-size: 16px; }.system-message{ padding: 24px 48px; text-align: center;margin-top: 100px;}.system-message h1{ font-size: 100px; font-weight: normal; line-height: 120px; margin-bottom: 12px; }h1 img{width: 100px;}.system-message .jump{ padding-top: 10px}.system-message .jump a{ color: #333;}.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 18px }.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}.tiao{margin-top: 40px}.tiao a{font-size: 16px;color: #fff;border-radius: 4px;background-color: #0d65a3;padding: 6px 16px;text-decoration: none;}</style></head><body><div class="system-message"><h1><img src="__HOMERESOURCE__/images/HchuanT_06.png"></h1><p class="error"><?php echo($error); ?></p><p class="detail"></p><p class="jump">页面自动跳转 等待时间: <b id="wait"><?php echo($waitSecond); ?></b></p><p class="tiao"><a id="href" href="<?php echo($jumpUrl); ?>">点击跳转</a></p></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.href1 = href;clearInterval(interval);};}, 1000);})();</script></body><html>

页面由公司前端所写,特别感谢


又需要的可以直接使用





1 0
原创粉丝点击