username@email.com
2025-02-20 27008c309a7adcd608666df53f4a89f88fb83d5f
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SubmitOrderDialogue.aspx.cs" Inherits="CY.WebForm.Pages.business.SubmitOrderDialogue" %>
 
<!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>
    <uc:CMSHead ID="CMSHead1" runat="server" />
    <link href="../../Styles/ParticularWQJ.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
        var defaultValue = '<%=Request["defaultarget"] %>';
        var orderState = '<%=Request["orderState"] %>';
        var orderType = '<%=Request["orderType"] %>';
        defaultValue = parseFloat(defaultValue);
        defaultValue = isNaN(defaultValue) ? 1 : defaultValue;
        $(function () {
 
            var dType = $("#hideDtype").val();
            if (dType == "4") {
                $("#trieName").text("退还金额");
                $(".ssTxt").hide();
                $("#btnSave").val("确定");
                if (orderState == '1') {
                    $("#txtTargetValue").attr("readonly", true);
                }
                //                if (parseInt(orderType) >= 1) {
                //                    $(".liMoney").hide();
                //                }
            }
            else if (dType == "3") {
                $("#trieName").text("退还金额");
            }
            else {
                $("#trieName").text("延迟天数");
                $("#unit").text("天");
            }
            var txtTargetValue = document.getElementById('txtTargetValue');
            txtTargetValue.value = defaultValue;
            //            txtTargetValue.focus();
 
            $("#btnSave").click(
                function () {
                    var re = window.confirm("您确定要执行该操作吗?");
                    if (re) {
                        parent.ToSubmit(window.document);
                    }
                }
            );
        });
    </script>
    <style type="text/css">
        ul { padding: 0; margin: 0px auto; }
        ul li { list-style: none; font-weight: normal; color: #333333; }
    </style>
</head>
<body style='margin: 0; padding: 10px;'>
    <input type="hidden" id="hideDtype" runat="server" />
    <ul>
        <li style="padding-left: 10px">订单编号:<b><%=Request["orderId"] %></b></li>
        <li class="liMoney" style="padding-left: 10px"><span id="trieName"></span>:<input type="text" id='txtTargetValue' maxlength='9' style='width: 50px;' onblur='if(1==<%="3".Equals(Request["dtype"]) ? "1" : "0"%>)ValidateDecimal(this);else ValidateNumber(this);' value='<%=Request["defaultarget"] %>' title='应为正数字' /><span id="unit">元</span></li>
        <li class="ssTxt" style="padding-left: 10px">申请概述:<textarea id='txtDialoguecontent' onblur='Restrict(this,200)' title='该项长度不能超过200<br/>(长度:中文字符=2,英文字符=1)' rows="2" cols="50" class='remark' style='height: 50px;'></textarea></li>
        <li style="text-align: center; padding-top: 10px">
            <input type="button" id="btnSave" value="申 请" runat="server" /><%--&nbsp;&nbsp;<input type="button" value="重 置" onclick="ReLoadSelf();" />--%>&nbsp;&nbsp;<input type="button" value="关 闭" onclick="RefreshDIVOpener();" />
        </li>
    </ul>
</body>
</html>