You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
3.4 KiB
HTML
75 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<title>订单详情</title>
|
|
<link href="__CSS__/ssg/common.css" rel="stylesheet" type="text/css">
|
|
<script src="/Public/Mobile/js/ssg/flexible.min.js" type="text/javascript"></script>
|
|
|
|
</head>
|
|
<body class="install-box">
|
|
<div class="title" >
|
|
<img class="gologin" src="__IMG__/ssg/alipay/back.png" style="margin-left:.24rem;" onclick="javascript:history.go(-1)">
|
|
<div style="font-size: .32rem;color: #fff;">{$game['game_name']}</div>
|
|
<div class="titleright" style="margin-right:.24rem;"></div>
|
|
</div>
|
|
<div class="page-container ">
|
|
<div class="vip-download">
|
|
<div class="game-info" style="padding: .3rem;width: 6.9rem;height: 3.4rem;font-size: .28rem;margin: auto;">
|
|
<img src="__IMG__/ssg/detail/download-bg.png">
|
|
<div class="game-icon" style="top:.5rem;"><img src="{$game['icon']|get_cover='path'}"></div>
|
|
<div class="game-title">{$game['game_name']}-超级签</div>
|
|
<div class="game-rule">不同设备需要分别付费安装哦,请使用常用设备下载</div>
|
|
<div class="download-button"><a href="{$url}">下载安装</a></div>
|
|
</div>
|
|
<if condition="$giftbag">
|
|
|
|
<div style="padding:0 .3rem;">
|
|
<div class="game-gift shaddowbox">
|
|
<div class="title-3">
|
|
<h2>特权礼包</h2>
|
|
</div>
|
|
<div class="gift-list">
|
|
<ul>
|
|
<li >
|
|
<div class="gift-title">
|
|
<h2>{$giftbag['gift_name']}</h2>
|
|
</div>
|
|
<p class="gift-info">{$giftbag['desribe']}</p>
|
|
<p class="gift-code">
|
|
<label for="giftCode">兑换码:</label>
|
|
<input id="giftCode1455" type="text" value="{$giftbag['novice']}" readonly="">
|
|
<a href="javascript:;" class="code-btn1455" data-clipboard-target="#giftCode1455">复制兑换码</a>
|
|
</p>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</if>
|
|
</div>
|
|
</div>
|
|
<script src="__JS__/jquery-1.11.1.min.js" type="text/javascript"></script>
|
|
<script src="__JS__/ssg/clipboard.min.js" type="text/javascript"></script>
|
|
</body>
|
|
<script>
|
|
|
|
var clipboard = new ClipboardJS(".code-btn1455");
|
|
clipboard.on('success', function (e) {
|
|
alert("复制成功");
|
|
});
|
|
clipboard.on('error', function (e) {
|
|
var ua = navigator.userAgent;
|
|
var isIOS = !!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
|
|
if (isIOS && ua.match(/os\s+(\d+)/i)[1] - 0 < 10) {
|
|
alert("您的系统版本过低,请手动复制下方地址");
|
|
}
|
|
});
|
|
</script>
|
|
</html> |