<%@ 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>
|