thinkphp 中定製success和error提示跳轉頁面
阿新 • • 發佈:2019-01-04
在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>
頁面由公司前端所寫,特別感謝
又需要的可以直接使用