| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- /**
- * Created by PhpStorm.
- * User: chenkuan
- * Date: 2017/12/15
- * Time: 上午11:13
- */
- use yii\helpers\Url;
- ?>
- <!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="text/html; charset=utf-8" />
- <title>BIT System 后台管理平台</title>
- <?php include(Yii::getAlias("@cp_module_views")."/common/css_js_main.php") ?>
- <script language="javascript">
- $(document).ready(function() {
- function jump(count) {
- window.setTimeout(function(){
- count--;
- if(count > 0) {
- $('#num').html(count);
- jump(count);
- } else {
- <?php if($redirectUrl) { ?>
- window.location.href = "<?= $redirectUrl ?>"
- <?php } else { ?>
- window.history.back();
- <?php } ?>
- }
- }, 1000);
- }
- jump(5);
- });
- </script>
- </head>
- <body id="main">
- <div class="main-nav"> <span class="fn-left">错误!</span> <span class="fn-right"><a href="javascript:javascript:history.go(-1);"><i class="icon-chevron-left"></i>返回</a></span>
- <div class="fn-clear"></div>
- </div>
- <div class="main-content">
- <div class="form-or-table">
- <div class="success-error well">
- <p></p>
- <div class="alert alert-error"> <i class="icon-remove"></i>
- <?= isset($tip) ? $tip : '您的操作失败!' ?>
- </div>
- <p> 5秒后自动跳转,当前还剩<span id="num">5</span>秒。<a class="btn btn-primary fn-right" href="javascript:redirectUrl();" onclick="javascript:redirectUrl();">确定</a></p>
- <p class="fn-clear"></p>
- </div>
- </div>
- </div>
- </body>
- <script type="text/javascript">
- function redirectUrl() {
- <?php if($redirectUrl) { ?>
- window.location.href = "<?= $redirectUrl ?>"
- <?php } else { ?>
- window.history.back();
- <?php } ?>
- }
- </script>
- </html>
|