|
|
@@ -332,9 +332,8 @@ function ShowMsg($msg, $gourl, $onlymsg = 0, $limittime = 0) |
|
|
|
return; |
|
|
|
} |
|
|
|
if (empty($GLOBALS['cfg_plus_dir'])) $GLOBALS['cfg_plus_dir'] = '..'; |
|
|
|
$htmlhead = "<!DOCTYPE html><html><head><meta charset='utf-8'><meta http-equiv='X-UA-Compatible' content='IE=Edge,chrome=1'><title>提示信息</title><base target='_self'></head>"; |
|
|
|
$htmlhead .= "<body><center><script>"; |
|
|
|
$htmlfoot = "</script></center></body></html>"; |
|
|
|
$htmlhead = "<!DOCTYPE html><html><head><meta charset='utf-8'><meta http-equiv='X-UA-Compatible' content='IE=Edge,chrome=1'><title>提示信息</title><base target='_self'></head><body><script>"; |
|
|
|
$htmlfoot = "</script></body></html>"; |
|
|
|
$litime = ($limittime == 0 ? 1000 : $limittime); |
|
|
|
$func = ''; |
|
|
|
if ($gourl == '-1') { |
|
|
@@ -352,10 +351,9 @@ function ShowMsg($msg, $gourl, $onlymsg = 0, $limittime = 0) |
|
|
|
} |
|
|
|
$func .= "var pgo=0;function JumpUrl(){if (pgo==0){location='$gourl'; pgo=1;}}"; |
|
|
|
$rmsg = $func; |
|
|
|
$rmsg .= "document.write(\"<style>body{margin:0;line-height:1.5;font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#545b62;background:#f5f5f5}a{color:#1eb867;text-decoration:none}.tips{margin:70px auto 0;padding:0;width:500px;height:auto;background:#fff;border-radius:.2rem;box-shadow:0 .125rem .25rem rgba(0,0,0,.075)}.tips-head{margin:0 20px;padding:18px 0;border-bottom:1px solid #f5f5f5}.tips-head p{margin:0;padding-left:10px;line-height:18px;text-align:left;border-left:3px solid #dc3545}.tips-box{padding:20px;min-height:130px;color:#545b62}.btn a{display:inline-block;margin:18px auto 0;padding:.375rem .75rem;font-size:12px;color:#fff;background:#1eb867;border-radius:.2rem;text-align:center;transition:all .3s}.btn a:focus{background:#006829;border-color:#005b24;box-shadow:0 0 0 0.2rem rgba(38,159,86,.5)}.text-primary{color:#007bff!important}@media (max-width:768px){body{padding:0 15px}.tips{width:100%}}</style>\");"; |
|
|
|
$rmsg .= "document.write(\"<div class='tips'>"; |
|
|
|
$rmsg .= "<div class='tips-head'><p>提示信息</p></div>\");"; |
|
|
|
$rmsg .= "document.write(\"<div class='tips-box'>\");"; |
|
|
|
$rmsg .= "document.write(\"<style>body{margin:0;line-height:1.5;font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#545b62;background:#f5f5f5}a{color:#1eb867;text-decoration:none}.tips-box{margin:70px auto 0;width:500px;height:auto;background:#fff;border-radius:.2rem;box-shadow:0 .125rem .25rem rgba(0,0,0,.075)}.tips-head{margin:0 20px;padding:18px 0;border-bottom:1px solid #f5f5f5}.tips-head p{margin:0;padding-left:10px;line-height:16px;text-align:left;border-left:3px solid #dc3545}.tips-body{padding:20px;min-height:130px;color:#545b62}.btn{margin-top:20px;text-align:center}.btn a{display:inline-block;padding:.375rem .75rem;font-size:12px;color:#fff;background:#1eb867;border-radius:.2rem;text-align:center;transition:all .3s}.btn a:focus{background:#006829;border-color:#005b24;box-shadow:0 0 0 0.2rem rgba(38,159,86,.5)}.text-primary{color:#007bff}@media (max-width:768px){.tips{padding:0 15px}.tips,.tips-box{width:100%}}</style>\");"; |
|
|
|
$rmsg .= "document.write(\"<div class='tips'><div class='tips-box'><div class='tips-head'><p>提示信息</p></div>\");"; |
|
|
|
$rmsg .= "document.write(\"<div class='tips-body'>\");"; |
|
|
|
$rmsg .= "document.write(\"".str_replace("\"", "“", $msg)."\");"; |
|
|
|
$rmsg .= "document.write(\""; |
|
|
|
if ($onlymsg == 0) { |
|
|
@@ -366,7 +364,7 @@ function ShowMsg($msg, $gourl, $onlymsg = 0, $limittime = 0) |
|
|
|
$rmsg .= "</div>\");"; |
|
|
|
} |
|
|
|
} else { |
|
|
|
$rmsg .= "</div>\");"; |
|
|
|
$rmsg .= "</div></div>\");"; |
|
|
|
} |
|
|
|
$msg = $htmlhead.$rmsg.$htmlfoot; |
|
|
|
} |
|
|
|