40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>授权通知</title>
|
|
<script src="__STATIC__/ext/layui/layui.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="__STATIC__/ext/layui/css/layui.css" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div><img style='width: 200px;align-content: center;' src='/addon/aliapp/shop/view/public/{$img}.png'></div>
|
|
<div style= "font-size:60px;margin-top: 25px">{$desc}</div>
|
|
<form class="layui-form" action="">
|
|
<div class="layui-form-item">
|
|
<!-- <button type="button" class="layui-btn layui-btn-normal" onclick="close()" style="margin-top: 100px;font-size: 50px;height:90px;">关闭页面</button>-->
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
</body>
|
|
<style>
|
|
.container {
|
|
/*margin-top: 50px;*/
|
|
text-align: center;
|
|
margin: 100px auto;
|
|
}
|
|
.item{
|
|
display: inline-block;
|
|
width: 100px;
|
|
background-color: #ff266e;
|
|
}
|
|
</style>
|
|
<script>
|
|
|
|
function close() {
|
|
window.opener=null;
|
|
window.open(location, '_self').close();
|
|
}
|
|
</script>
|
|
</html> |