username@email.com
2025-05-15 9be7596c0b251c392ab0788f3d18806502c6ee76
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="IntentionCustomerBatchAccess.aspx.cs" Inherits="CY.WebForm.Pages.business.IntentionCustomerBatchAccess" %>
 
<!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 runat="server">
    <title>批量访问</title>
    <uc:CMSHead ID="CMSHead1" runat="server" />
    <script type="text/javascript">
        function CheckForm(obj) {
            if ($("#dwAcessType").val() == "1") {
                if ($("#txtStartTime").val() == "") {
                    alertMsg("请填写开始时间");
                    return false;
                } else if ($("#txtEndTime").val() == "") {
                    alertMsg("请填写结束时间");
                    return false;
                }
            }
            return true;
        }
        $(function () {
            $("#dwAcessType").change(function () {
                if ($(this).val() == "1") {
                    $(".trGoHome").show();
                } else {
                    $(".trGoHome").hide();
                }
            });
        });
    </script>
</head>
<body>
    <form id="form1" runat="server" class="form2">
    <table class="tableStyle">
        <tr>
            <td class="ali03 w100px">
                访问类型:
            </td>
            <td>
                <asp:DropDownList runat="server" ID="dwAcessType" class="Sreq" keepDefaultStyle="true" msg="请选择访问类型">
                </asp:DropDownList>
            </td>
        </tr>
        <tr>
            <td class="ali03 ">
                访问人:
            </td>
            <td>
                <select id="selBusinessManagerId" runat="server" datatextfield="Name" datavaluefield="Keyid" keepdefaultstyle='true' class="Sreq" msg="请选择访问人">
                </select>
            </td>
        </tr>
        <tr class="trGoHome hide">
            <td class="ali03 ">
                开始时间:
            </td>
            <td>
                <input type="text" id="txtStartTime" runat="server" class="date w150px" datefmt="yyyy-MM-dd HH:mm" readonly="readonly" />
            </td>
        </tr>
        <tr>
            <td class="ali03 ">
                接待人:
            </td>
            <td>
                <input type="text" id="txtReciver" runat="server" class="w150px" maxlength="10" />
            </td>
        </tr>
        <tr>
            <td class="ali03 ">
                洽谈情况:
            </td>
            <td>
                <textarea runat="server" id="txtContent" style="width: 80%; height: 50px;" maxlength="100" ></textarea>
            </td>
        </tr>
        <tr class="trGoHome hide">
            <td class="ali03 ">
                结束时间:
            </td>
            <td>
                <input type="text" id="txtEndTime" runat="server" class="date w150px" datefmt="yyyy-MM-dd HH:mm" readonly="readonly" />
            </td>
        </tr>
        <tr>
            <td class="ali03 ">
                成交意向:
            </td>
            <td>
                <asp:DropDownList runat="server" ID="dwTurnoverIntention" class="Sreq" keepDefaultStyle="true" msg="请选择成交意向">
                </asp:DropDownList>
            </td>
        </tr>
        <tr>
            <td colspan="2" align="center">
                <asp:Button runat="server" Text="提交" ID="btn_config" OnClick="btn_config_Click" OnClientClick="if(CheckForm(this))return true;else return false;" />
            </td>
        </tr>
    </table>
    </form>
</body>
</html>