buy_action_payment.htm
4.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>" />
<title>订单确认 - 会员中心 -<?php echo $cfg_webname; ?></title>
<link href="templets/style/base.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="templets/js/j.js"></script>
<script type="text/javascript" src="templets/js/load.js"></script>
<script type="text/javascript" src="templets/js/leftmenu.js"></script>
</head>
<body>
<div id="main">
<?php include(DEDEMEMBER."/templets/head.htm"); ?>
<div id="content" class="w960 clearfix">
<?php include(DEDEMEMBER."/templets/menu.php"); ?>
<div id="mcpmain">
<div id="appTab">
<ul>
<li class="thisTab"><a href="buy.php">会员升级/点卡充值</a></li>
<li><a href="operation.php">点卡/会员定单</a></li>
<li><a href="mypay.php" id="buy">我购买的文章</a></li>
<li><a href="shops_orders.php">商品定单</a></li>
<li><a href="shops_products.php" id="buy">我购买的商品</a></li>
</ul>
<div class="tabOther doPost" style="margin-top:5px"> <a href="buy.php">购买点卡/会员服务</a> </div>
</div>
<div id="mainCp">
<h3 class="meTitle">订单确认</h3>
<div class="appMsg">
<p class="tips">* 你申请购买的产品如下,确认无误后请点击“购买并支付”按钮,进行网上支付,如果支付失败,请与管理员联系其它支付方式:</p>
</div>
<div class="postForm">
<h3 class="meTitle" style="padding-top: 20px;">购买点卡/会员服务</h3>
<form method="post" name="E_FORM" action="buy_action.php" target="_blank">
<input type="hidden" name="pd_encode" value="<?php echo $pr_encode;?>">
<input type="hidden" name="pd_verify" value="<?php echo $pr_verify;?>">
<input type="hidden" name="aid" value="<?php echo $buyid;?>">
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="list">
<tbody>
<tr>
<td width="15%" align="right" valign="top">订单编号:</td>
<td><?php echo $buyid?></td>
</tr>
<tr>
<td align="right" valign="top">产品类型:</td>
<td><?php echo $ptype?></td>
</tr>
<tr>
<td align="right" valign="top">产品名称:</td>
<td><?php echo $pname?></td>
</tr>
<tr>
<td align="right" valign="top"><span class="td1">产品价格:</span></td>
<td><?php echo $price;?>元</td>
</tr>
<tr>
<td align="right" valign="top"><span class="td1">支付方式:</span></td>
<td><table border="0" cellpadding="0" cellspacing="0">
{dede:array.payment_list}
<tr onMouseMove="javascript:this.bgColor='#F8F8F8';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
<td width="10%" align="right" style="vertical-align:middle;">{dede:if value.code=="cod" || value.code=="bank"} <input name="paytype" type="radio" value="{dede:value.id/}" disabled="disabled"/>{else}<input name="paytype" type="radio" value="{dede:value.id/}"/>{/dede:if}</td>
<td width="20%" valign="middle" style="vertical-align:middle;"> {dede:value.name/} </td>
<td width="60%"> {dede:value.description/} </td>
<td width="10%" align="center"><span class="fc-f60">{dede:value.fee/}元</span></td>
</tr>
{/dede:array}
</table></td>
</tr>
<tr>
<td align="right" valign="top"> </td>
<td><button class="button5" type="submit">购买并支付</button>
<button class="buttonGary2 ml10" type="button" onclick="location='buy.php'">返回</button></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<!--主操作区域 -->
</div>
</div>
<?php include(DEDEMEMBER."/templets/foot.htm"); ?>
</div>
</body>
</html>