9fffb3bf7da48304bb260d312ffc326b.php
2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php return function ($in, $debugopt = 1) {
$cx = array(
'flags' => array(
'jstrue' => false,
'jsobj' => false,
'spvar' => true,
'prop' => false,
'method' => false,
'mustlok' => true,
'echo' => false,
'debug' => $debugopt,
),
'constants' => array(),
'helpers' => array(),
'blockhelpers' => array(),
'hbhelpers' => array(),
'partials' => array(),
'scopes' => array(),
'sp_vars' => array('root' => $in),
'lcrun' => 'Plugin\LCRun3',
);
return '<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>'.htmlentities((string)Plugin\LCRun3::v($cx, $in, array('staticTitle')), ENT_QUOTES, 'UTF-8').'</title>
<link rel="stylesheet" href="'.htmlentities((string)Plugin\LCRun3::v($cx, $in, array('jsUrl')), ENT_QUOTES, 'UTF-8').'/cuxiao/css/newuser/help.css">
</head>
<body>
<!-- <header>
<a href="javascript:;"></a>
<span>如何使用优惠券</span>
</header>-->
<div class="content">
<div class="instruction">
<b>说明:</b>优惠券是有货线上品牌商城针对不同品牌或商品向消费者发送的虚拟优惠券,优惠券可直接用于指定品牌或商品消费,不可转让他人,不可兑换为现金
</div>
<div class="steps">
<h1><span></span>优惠券使用步骤</h1>
<div class="step">
1. 选择要购买的商品进入到 <b>填写订单 </b>页面后。在选择支付方式里面,点击" <b>使用优惠券支付</b> ",并选择要使用的优惠券或直接输入优惠码
</div>
<div class="step">
2. 在当前页面您可以看到付款详情,确认无误后,点击" <b>去付款</b> " 即生成订单, 按照您所选的支付方式付款。
</div>
<div class="step">
3. 可进入到 " <b>个人中心</b> "点击" <b>订单中心</b> " 查看订单详情。
</div>
</div>
</div>
<script>
(function(doc, win) {
var docEl = doc.documentElement;
(function() {
var clientWidth = docEl.clientWidth;
if (!clientWidth) {
return;
}
docEl.style.fontSize = 20 * (clientWidth / 320) + \'px\';
}());
})(document, window);
</script>
</body>
</html>';
}
?>