You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
zhishifufei_php/application/wap/view/first/public/error.html

42 lines
1.9 KiB

<!-- +---------------------------------------------------------------------- -->
<!-- | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ] -->
<!-- +---------------------------------------------------------------------- -->
<!-- | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved. -->
<!-- +---------------------------------------------------------------------- -->
<!-- | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权 -->
<!-- +---------------------------------------------------------------------- -->
<!-- | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397 -->
<!-- +---------------------------------------------------------------------- -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>{if condition="$title"}<?php echo ($title);?>{else/}错误提示{/if}</title>
<meta name="viewport" content="initial-scale=1, width=device-width, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name='apple-touch-fullscreen' content='yes'>
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="address=no">
<script type="text/javascript" src="{__PLUG_PATH}sweetalert2/sweetalert2.all.min.js"></script>
<style>
.swal2-container.swal2-shown { background-color: rgba(255, 255, 255, 0.4); }
</style>
</head>
<body>
<script>
document.addEventListener("touchmove",function(e){e.preventDefault();},false);
var url = "{$url}";
if(!url || url == 0) url = document.referrer;
if(!url || url == 0) url = "{:Url('index')}";
sweetAlert({
title:"{$title}",
text:"{$msg}",
type:"info",
allowOutsideClick:false
}).then(function() {
location.href = url;
})
</script>
</body>
</html>