username@email.com
2025-05-12 ae6e40362a745caef9ead36f81f38313fb8c2c66
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OrderAccept.aspx.cs" Inherits="CY.WebForm.Pages.business.OrderAccept" %>
 
<!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 id="Head1" runat="server">
    <title>买家确认收货</title>
    <script src="../../js/utils/jquery-1.5.1.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        parent.getmod = function (id) {
//            alert(this.location+',' + this['ogoback']);
            try {
                this['CallServer'] = this['ogoback'];
            } catch (e) {
 
            } return document.getElementById(id);
        };
 
        var maxmoney = '<%=Request["maxmoney"] %>';
        function IsMoneyMuch(txt) {
            var inputDecimal = parseFloat(txt.value);
            maxmoney = parseFloat(maxmoney);
            if (isNaN(maxmoney)) {
                alertMsg('页面错误!请重新操作!');
                parent.global.delayrefresh(); return;
            } else;
            txt.value = isNaN(inputDecimal) ? 0 : txt.value; var isWin = true;
            if (0 == inputDecimal || 0.01 > inputDecimal) {
                alertMsg('输入金额不在受理范围内!请重新输入!');
                txt.focus(); return;
            } else;
            try { isWin -= eval(parent['checkmoneynext']); } catch (e) { }
            if (isNaN(isWin) && inputDecimal > maxmoney) {
                alertMsg('您的输入退款金额大于买家在线支付金额,<br/>为了您的切身利益请您仔细复查输入金额!');
            }
 
 
        }
        $(function () {
            parent['Refund'] = parent['ConfirmOrder'];
            try {
 
                var txtPrice = document.getElementById('txtPayablePrice');
                txtPrice.value = maxmoney;
                txtPrice.focus();
            } catch (e) {
 
            }
        });
        
    </script>
    <script src="../../js/common/util.js" type="text/javascript"></script>
    <link href="../../Styles/base.css" rel="stylesheet" type="text/css" />
    <link href="../../Styles/changes.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table class="formTable" cellspacing="0" cellpadding="0" width="100%" border="0">
            <tr>
                <td class="tdk">
                    支付码
                </td>
                <td colspan="3">
                    <input id='txtPayPwd' type="password" maxlength='30' />
                    <input id='txtPwdCode' type="hidden" runat="server" />
                    <input id="btnSubmit" type="button" runat="server" style='display: none;' title='确认收货'
                        class="payBtn" value="" />
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>