| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="callinopt.aspx.cs" Inherits="HySoft.BaseCallCenter.Web.telmanage.callinopt" %>
- <!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>
- <link href="../scripts/ui/skins/Aqua/css/ligerui-all.css" rel="stylesheet" type="text/css" />
- <script src="../scripts/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
- <script src="../scripts/ui/json2.js" type="text/javascript"></script>
- <script src="../scripts/ui/js/core/base.js" type="text/javascript"></script>
- <script src="../scripts/ui/js/ligerui.min.js" type="text/javascript"></script>
- <link href="../scripts/ui/skins/Tab/css/tab.css" rel="stylesheet" type="text/css" />
- <link href="../scripts/ui/skins/Tab/css/grid.css" rel="stylesheet" type="text/css" />
- <script src="../scripts/ui/js/plugins/ligerGrid.js" type="text/javascript"></script>
- <script src="../scripts/ui/js/plugins/ligerLayout.js" type="text/javascript"></script>
- <script src="../scripts/ui/js/plugins/ligerTree.js" type="text/javascript"></script>
- <script src="../scripts/ui/js/plugins/ligerMenu.js" type="text/javascript"></script>
- <link href="../scripts/ui/skins/ligerui-icons.css" rel="stylesheet" type="text/css" />
- <link href="../images/style.css" rel="stylesheet" type="text/css" />
- <script src="../scripts/My97DatePicker/WdatePicker.js" type="text/javascript"></script>
- <script type="text/javascript">
- var gridlist;
- var treelist = null;
- var historylist;
- $(function () {
- $("#layout1").ligerLayout({
- leftWidth: 250
- });
- var w = $("#form1").width() - 260;
- historylist = $("#divHistoryForm").ligerPanel({
- title: '历史信息',
- height: 150,
- width: w
- });
- $("#divOrderForm").ligerPanel({
- title: '工单信息',
- height: 300,
- width: w
- });
- //加载历史
- LoadList();
- //InitList();
- $.ajax({
- type: 'get',
- url: '../telmanage/ajax/telrecords.ashx?action=insertCallLogs&serverip=&ctiusercode=',
- dataType: 'html',
- success: function (res) {
- InitList();
- }
- });
- });
- function SetTreeValue() {
- try {
- treelist.setValue(document.getElementById("hidSeriveDeptParentId").value);
- if (document.getElementById("hidSeriveDeptParentId").value == "" || document.getElementById("hidSeriveDeptParentId").value == "0") {
- treelist.setText("顶级部门");
- }
- }
- catch (e) {
- }
- }
- function InitList() {
- treelist = $("#drpServiceDept").ligerComboBox({
- width: 130,
- selectBoxWidth: 200,
- selectBoxHeight: 150, valueField: 'id', resize: false, treeLeafOnly: false,
- tree: {
- url: '../customermanage/ajax/customeredit.ashx?action=getservicedepttreelist',
- checkbox: false,
- height: 150,
- ajaxType: 'get',
- onSuccess: function (data) { SetTreeValue(); }
- },
- onSelected: function (newvalue) {
- $("#hiddSeriveDeptId").val(newvalue);
- }
- });
- $("#txtByDept").ligerComboBox({
- width: 130,
- selectBoxWidth: 200,
- selectBoxHeight: 150, valueField: 'id', resize: false, treeLeafOnly: false,
- tree: {
- url: '../customermanage/ajax/customeredit.ashx?action=getservicedepttreelist',
- checkbox: false,
- height: 150,
- ajaxType: 'get',
- onSuccess: function (data) { }
- }
- });
- $("#drpProvince").ligerComboBox({
- url: '../customermanage/ajax/customeredit.ashx?action=getregionlist',
- valueField: '_f_regionid',
- textField: '_f_regionname',
- autocomplete: true,
- onSelected: function (newvalue) {
- $("#hiddProvinceId").val(newvalue);
- $("#drpCity").ligerComboBox({
- url: '../customermanage/ajax/customeredit.ashx?action=getregionlist®ionpid=' + newvalue,
- valueField: '_f_regionid',
- textField: '_f_regionname', onSelected: function (newvalue) {
- $("#hiddCityId").val(newvalue);
- }
- });
- }
- });
- var cid = document.getElementById("hiddCityId").value;
- var sprovinceid = document.getElementById("hiddProvinceId").value;
- if (sprovinceid != "") {
- $("#drpCity").ligerComboBox({
- url: '../customermanage/ajax/customeredit.ashx?action=getregionlist®ionpid=' + sprovinceid,
- valueField: '_f_regionid',
- textField: '_f_regionname',
- isMultiSelect: false,
- isShowCheckBox: false,
- onSuccess: function (data) {
- if (cid != "") {
- liger.get("drpCity").setValue(cid);
- } else {
- liger.get("drpCity").setValue(data[0]._f_regionid);
- document.getElementById("hiddCityId").value = data[0]._f_regionid;
- }
- }, onSelected: function (newvalue) {
- $("#hiddCityId").val(newvalue);
- }
- });
- }
- else {
- $("#drpCity").ligerComboBox({
- data: null,
- valueField: '_f_regionid',
- textField: '_f_regionname',
- isMultiSelect: false,
- isShowCheckBox: false
- });
- }
- document.getElementById("hiddCityId").value = cid;
- BindData("txtTsType", "hiddTsType", "TSLX");
- //$("#txtByName").ligerComboBox({
- // url: '../customermanage/ajax/customeredit.ashx?action=getaftersalelist',
- // valueField: '_f_userid',
- // textField: '_f_username',
- // autocomplete: true, onSelected: function (newvalue) {
- // $("#hiddByName").val(newvalue);
- // }
- //});
- }
- function SelectJDDept(deptid, deptname) {
- document.getElementById("txtJDDept").value = deptname;
- document.getElementById("hiddJDDept").value = deptid;
- try {
- $("#txtJDUser").ligerComboBox({
- url: '../telmanage/ajax/selectuser.ashx?action=getaftersalelist&deptid=' + deptid,
- valueField: '_f_userid',
- textField: '_f_username',
- autocomplete: true, onSelected: function (newvalue) {
- $("#hiddJDUser").val(newvalue);
- }
- });
- }
- catch (e) { }
- }
- function BindData(objid, hiddid, param) {
- $("#" + objid).ligerComboBox({
- url: '../customermanage/ajax/customeredit.ashx?action=getdictionarylist¶m=' + param,
- valueField: '_f_dictionaryvalueid',
- textField: '_f_name',
- autocomplete: true,
- onSelected: function (newvalue) {
- $("#" + hiddid).val(newvalue);
- }
- });
- }
- function ProvinceData() {
- $.post("../customermanage/ajax/customeredit.ashx?action=getprovincelist", function (data, states) {
- if (states == "success") {
- return data;
- }
- })
- }
- function GetCustomerInfo() {
- $.ajax({
- type: 'get',
- url: '../telmanage/ajax/customeropt.ashx?action=getCustomerInfoByPhone&tel=' + document.getElementById("hfPhone").value,
- dataType: 'html',
- success: function (res) {
- if (res != "") {
- }
- }
- });
- }
- function OpenWindowShow1(Url, Title, Width, Height) {
- $.ligerDialog.open({
- title: Title, url: Url, height: Height, width: Width, isResize: true, modal: true, buttons: [
- { text: '关闭', onclick: function (item, dialog) { dialog.close(); AgentFree(); } }
- ], isResize: true
- });
- }
- function OpenWindowShow(Url, Title, Width, Height) {
- $.ligerDialog.open({
- title: Title, url: Url, height: Height, width: Width, isResize: true, modal: true, isResize: true
- });
- }
- function Player(path) {
- OpenWindowShow1('voiceplay.aspx?path=' + path, '录音播放与下载', 600, 300);
- }
- function LoadList() {
- gridlist = $("#divDataList").ligerGrid({
- checkbox: false,
- height: 150,
- columns: [
- { display: '电话号码', name: '_callnumber', minWidth: 60 },
- {
- display: '呼叫状态', name: '_callstate', minWidth: 40, render: function (rowdata, rowindex, value) {
- if (value == "0")
- return "未接通";
- else
- return "已接通";
- }
- },
- {
- display: '是否处理', name: '_isdeal', minWidth: 40, render: function (rowdata, rowindex, value) {
- if (value == "0")
- return "未处理";
- else if (value == "1")
- return "已处理";
- else
- return "注销";
- }
- }, { display: '坐席工号', name: '_usercode', minWidth: 40 },
- { display: '坐席姓名', name: '_username', minWidth: 40 },
- { display: '通话开始时间', name: '_talkstarttime', minWidth: 140, type: 'date', format: 'yyyy-MM-dd hh:mm:ss' },
- { display: '通话时长(s)', name: '_talklongtime' },
- {
- display: '录音', name: '_filepath', render: function (rowdata, rowindex, value) {
- if (value == "") {
- return;
- }
- else {
- return "<img src=\"../images/notice.png\" style=\"cursor:hand;\" onclick=\"Player('" + encodeURI(value) + "');\" />";
- }
- }
- }], url: 'ajax/telrecords.ashx?action=getcallinlist&telnum=' + document.getElementById("hfPhone").value, pageSize: 3, rownumbers: true
- });
- gridlist.changePage('first');
- $("#pageloading").hide();
- }
- function formatDateTime(value, rowData, rowIndex) {
- if (value != null) {
- var date = new Date(parseInt(value.replace("/Date(", "").replace(")/", ""), 10));
- var result = date.getFullYear() + "-" + (date.getMonth() + 1 < 10 ? "0"
- + (date.getMonth() + 1) : date.getMonth() + 1) + "-"
- + (date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) + " "
- + (date.getHours() < 10 ? "0" + date.getHours() : date.getHours()) + ":"
- + (date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes()) + ":"
- + (date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds());
- return result;
- }
- return value;
- }
- function validate(optid) {
- $.ligerDialog.waitting('工单提交中...');
- return true;
- }
- function TabCloseById() {
- var id = "callin_" + document.getElementById("hfCallId").value + "" + document.getElementById("hfPhone").value;
- //id = "callin_1402107209-522613335140729";
- parent.f_removeTab(id);
- }
- function SelectCustomer() {
- var vheight = $("#form1").height();
- var vwidth = $("#form1").width() * 0.9;
- OpenWindowShow('selectcustomer.aspx?name=' + escape(document.getElementById("txtCustomerName").value), "选择客户", vwidth, vheight);
- }
- function SelectJDUser() {
- var vheight = $("#form1").height();
- var vwidth = $("#form1").width() * 0.9;
- OpenWindowShow('selectdeptuser.aspx', "选择接单处理人", vwidth, vheight);
- }
- function ShowCustomer(id) {
- }
- function SetCustomerInfo(F_CustomerId,
- F_CustomerName,
- F_CustomerCode,
- F_ServiceDeptID,
- F_RegionId,
- F_CityID,
- F_ServiceDept,
- F_Province,
- F_City,
- _f_chargename,F_Telephone, F_Mobile, F_ChargeTelephone) {
- document.getElementById("hiddCustomerId").value = F_CustomerId;
- document.getElementById("txtCustomerName").value = F_CustomerName;
- document.getElementById("divCustomerCode").innerHTML = "<a href=\"javascript:void(null)\" target=\"_self\" onclick=\"ShowCustomer('" + F_CustomerId + "');\">" + F_CustomerCode + "</a>";
- document.getElementById("hiddSeriveDeptId").value = F_ServiceDeptID;
- document.getElementById("hiddProvinceId").value = F_RegionId;
- document.getElementById("hiddCityId").value = F_CityID;
- document.getElementById("hiddTelephone").value = F_Telephone;
- document.getElementById("hiddMobile").value = F_Mobile;
- document.getElementById("hiddChargeTelephone").value = F_ChargeTelephone;
- document.getElementById("drpServiceDept").value = F_ServiceDept;
- document.getElementById("drpProvince").value = F_Province;
- document.getElementById("drpCity").value = F_City;
- document.getElementById("drpTelephone").value = F_Telephone;
- document.getElementById("drpMobile").value = F_Mobile;
- document.getElementById("drpChargeTelephone").value = F_ChargeTelephone;
- document.getElementById("txtTsName").value = _f_chargename;
- }
- var sgridlist;
- function FastSearch() {
- var txtobj = document.getElementById("txtJDUser");
- var txtobjcode = document.getElementById("hiddJDUser");
- var divobj = document.getElementById("divJDDept");
- var divdataobj = document.getElementById("divDataJDDept");
- if (txtobj.value == "") {
- divobj.style.display = "none";
- //divdataobj.innerHTML = "";
- txtobjcode.value = "0";
- }
- else {
- divobj.style.display = "inline";
- document.getElementById("hiddJDUser").value = "0";
- document.getElementById("hiddJDDept").value = "0";
- sgridlist = $("#divDataJDDept").ligerGrid({
- height: 180,
- columns: [
- { display: 'ID', name: '_f_userid', align: 'left', width: 0, hide: true },
- { display: '用户名称', name: '_f_username', width: 100 },
- { display: '部门', name: '_f_deptname', width: 150 }
- ], url: '../telmanage/ajax/selectuser.ashx?action=getuserbyname' + '&name=' + encodeURI(txtobj.value), pageSize: 5, rownumbers: true,
- onDblClickRow: function (data, rowindex, rowobj) {
- try {
- document.getElementById("txtJDUser").value = data._f_username;
- document.getElementById("hiddJDUser").value = data._f_userid;
- document.getElementById("txtJDDept").value = data._f_deptname;
- document.getElementById("hiddJDDept").value = data._f_deptid;
- }
- catch (e) {
- alert(e.Message);
- }
- document.getElementById("divJDDept").style.display = "none";
- }
- });
- sgridlist.changePage('first');
- $("#pageloading").hide();
- }
- }
- function EditAndSaveCustomerInfo() {
- //客户名称
- var cid = encodeURIComponent(document.getElementById("hiddCustomerId").value);
- if (cid == "" || cid <= 0 || cid == "undefined") { $.ligerDialog.warn('没有选择客户'); return; }
- var cname = encodeURIComponent(document.getElementById("txtCustomerName").value);
- //客户编号
- //var ccode = encodeURIComponent(document.getElementById("divCustomerCode").innerHTML);
- //所属客服部
- var sdepid = encodeURIComponent(document.getElementById("hiddSeriveDeptId").value);
- var sdep = encodeURIComponent(document.getElementById("drpServiceDept").value);
- //所属省份
- var prid = encodeURIComponent(document.getElementById("hiddProvinceId").value);
- var pr = encodeURIComponent(document.getElementById("drpProvince").value);
- //所属市县
- var ctid = encodeURIComponent(document.getElementById("hiddCityId").value);
- var ct = encodeURIComponent(document.getElementById("drpCity").value);
- //联系电话
- var tel = encodeURIComponent(document.getElementById("drpTelephone").value);
- var mobile = encodeURIComponent(document.getElementById("drpMobile").value);
- var tel1 = encodeURIComponent(document.getElementById("drpChargeTelephone").value);
- var params = "cid=" + cid + "&cname=" + cname
- //+ "&ccode=" + ccode
- + "&sdepid=" + sdepid + "&sdep=" + sdep
- + "&prid=" + prid + "&pr=" + pr
- + "&ctid=" + ctid + "&ct=" + ct
- + "&tel="
- + tel + "&mobile=" + mobile + "&tel1=" + tel1;
- $.ajax({
- type: "get",
- url: "ajax/editandsavecustomerinfo.ashx?action=editAndSave",
- data: params,
- cache: false,
- success: function (res, state) {
- if (state == "success") {
- if (res == "True") {
- $.ligerDialog.success('修改客户信息成功');
- } else if (res == "False") {
- $.ligerDialog.error('修改客户信息失败');
- }
- }
- }
- });
- }
- document.onkeydown = function (event) {
- var e = event || window.event || arguments.callee.caller.arguments[0];
- if (e && e.keyCode == 13 && document.activeElement.id == "txtCustomerName") {
- SelectCustomer();
- }
- };
- function ReplaceValue(n) {
- var tel = document.getElementById("hfPhone").value;
- switch (n) {
- case 1:
- var t1 = document.getElementById("drpTelephone").value;
- var t2 = document.getElementById("hiddTelephone").value;
- if (t1 != tel) { document.getElementById("drpTelephone").value = tel; } else { document.getElementById("drpTelephone").value = t2; }
- break;
- case 2:
- var t1 = document.getElementById("drpMobile").value;
- var t2 = document.getElementById("hiddMobile").value;
- if (t1 != tel) { document.getElementById("drpMobile").value = tel; } else { document.getElementById("drpMobile").value = t2; }
- break;
- case 3:
- var t1 = document.getElementById("drpChargeTelephone").value;
- var t2 = document.getElementById("hiddChargeTelephone").value;
- if (t1 != tel) { document.getElementById("drpChargeTelephone").value = tel; } else { document.getElementById("drpChargeTelephone").value = t2; }
- break;
- }
- }
- </script>
- </head>
- <body style="overflow: hidden;" scroll="no">
- <form id="form1" runat="server">
- <asp:HiddenField ID="hfBusinessType" Value="1" runat="server"></asp:HiddenField>
- <%--按键选择类型--%>
- <asp:HiddenField ID="hfPhone" Value="" runat="server"></asp:HiddenField>
- <%--来电号码--%>
- <asp:HiddenField ID="hfCallId" Value="0" runat="server"></asp:HiddenField>
- <%--来电callid--%>
- <asp:HiddenField ID="hfUserId" Value="0" runat="server"></asp:HiddenField>
- <asp:HiddenField ID="hfTab" Value="0" runat="server"></asp:HiddenField>
- <div class="tools_box">
- <div class="tools_bar">
- <table border="0" cellpadding="0" cellspacing="0" style="width: 100%;">
- <tr>
- <td valign="middle" style="width: 61px; padding-left: 3px;">
- <img src="../images/phone.png" />
- </td>
- <td valign="middle" style="width: 500px;">
- <label id="txtLaiDian" runat="server" style="font-size: 20px; color: Red;">
- 0000--郑州
- </label>
- </td>
- <td valign="middle" style="padding-left: 3px;">
- <asp:CheckBox ID="cbBlack" runat="server" /><span>拉黑</span> <span id="ShiChang">拉黑时长:</span><asp:TextBox
- ID="txtBlackTime" runat="server" onchange="txtChange(this.value)" CssClass="txtInput normal"
- Text="0" onKeyUp="this.value=this.value.replace(/[^\d]/g,'');" Width="30px"></asp:TextBox> <input
- id="rdTimesType0" name="timetype" type="radio" checked runat="server" /> 分 <input
- id="rdTimesType1" name="timetype" type="radio" runat="server" /> 时 <input
- id="rdTimesType2" name="timetype" type="radio" runat="server" /> 天
- </td>
- <td style="width: 220px; padding-right: 3px;">来电时间:<span style="color: #F00; font-weight: 800; font-size: 14px;"><%=System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") %></span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <div id="layout1">
- <div position="left" title="客户信息" style="overflow: auto; height: 95%;">
- <table class="form_table">
- <col width="85px" />
- <col />
- <tbody>
- <tr>
- <th>客户名称:
- </th>
- <td>
- <div style="float: left;">
- <asp:HiddenField ID="hiddCustomerId" runat="server" Value="0" />
- <asp:TextBox ID="txtCustomerName" runat="server" CssClass="txtInput normal" Style="width: 90px;"></asp:TextBox>
- </div>
- <div style="float: left; padding-top: 2px;">
- <img src="../images/btn_off_lookup.gif" onclick="SelectCustomer();" alt="选择客户" style="cursor: pointer;" />
- </div>
- </td>
- </tr>
- <tr>
- <th>客户编号:
- </th>
- <td>
- <div id="divCustomerCode" runat="server">
- <a href="javascript:void(null)" target="_self" onclick="ShowCustomer('0');">0000</a>
- </div>
- </td>
- </tr>
- <tr>
- <th>所属单位:
- </th>
- <td>
- <asp:TextBox ID="drpServiceDept" runat="server"></asp:TextBox><asp:HiddenField ID="hiddSeriveDeptId"
- runat="server" />
- </td>
- </tr>
- <tr>
- <th>所属省份:
- </th>
- <td>
- <asp:TextBox ID="drpProvince" runat="server"></asp:TextBox><asp:HiddenField ID="hiddProvinceId"
- runat="server" />
- </td>
- </tr>
- <tr>
- <th>所属市县:
- </th>
- <td>
- <asp:TextBox ID="drpCity" runat="server"></asp:TextBox><asp:HiddenField ID="hiddCityId"
- runat="server" />
- </td>
- </tr>
- <tr>
- <th>联系电话1:
- </th>
- <td>
- <div style="float: left;">
- <asp:TextBox ID="drpTelephone" runat="server" CssClass="txtInput normal" Style="width: 100px;"></asp:TextBox><asp:HiddenField
- ID="hiddTelephone" runat="server" />
- </div>
- <div style="float: left; padding-top: 2px;">
- <img src="../images/timg.jpg" onclick="ReplaceValue(1);" alt="替换" style="cursor: pointer; width:20px;height:20px;" />
- </div>
- </td>
- </tr>
- <tr>
- <th>联系电话2:
- </th>
- <td>
- <div style="float: left;">
- <asp:TextBox ID="drpMobile" runat="server" CssClass="txtInput normal" Style="width: 100px;"></asp:TextBox><asp:HiddenField
- ID="hiddMobile" runat="server" />
- </div>
- <div style="float: left; padding-top: 2px;">
- <img src="../images/timg.jpg" onclick="ReplaceValue(2);" alt="替换" style="cursor: pointer; width:20px;height:20px;" />
- </div>
- </td>
- </tr>
- <tr>
- <th>联系电话3:
- </th>
- <td>
- <div style="float: left;">
- <asp:TextBox ID="drpChargeTelephone" runat="server" CssClass="txtInput normal" Style="width: 100px;"></asp:TextBox><asp:HiddenField
- ID="hiddChargeTelephone" runat="server" />
- </div>
- <div style="float: left; padding-top: 2px;">
- <img src="../images/timg.jpg" onclick="ReplaceValue(3);" alt="替换" style="cursor: pointer; width:20px;height:20px;" />
- </div>
- </td>
- </tr>
- <tr>
- <th colspan="2" style="text-align: center">
- <input id="editandsave" type="button" title="修改并保存" value="修改并保存" class="btnSubmit" onclick="EditAndSaveCustomerInfo()" />
- </th>
- </tr>
- </tbody>
- </table>
- </div>
- <div position="center" title="">
- <div id="divHistoryForm">
- <div id="divDataList">
- </div>
- </div>
- <div id="divOrderForm">
- <div style="position: relative; z-index: 9999;">
- <div id="divJDDept" ostate="0" onmouseover="this.ostate='1';" onmouseout="this.ostate='0';"
- style="display: none; height: 100px; width: 280px; background-color: White; border: solid 1px #89BBDC; position: absolute; top: 100px; right: 385px;">
- <div id="divDataJDDept" style="height: 180px; width: 100%; overflow-y: auto;">
- </div>
- </div>
- <div id="divJDDeptZX" ostate="0" onmouseover="this.ostate='1';" onmouseout="this.ostate='0';"
- style="display: none; height: 180px; width: 280px; background-color: White; border: solid 1px #89BBDC; position: absolute; top: -120px; left: 450px;">
- <div id="divDataJDDeptZX" style="height: 180px; width: 100%; overflow-y: auto;">
- </div>
- </div>
- </div>
- <div id="contentTab" style="width: 100%; height: auto;">
- <ul class="tab_nav">
- <li id="tabli0" class="selected"><a href="javascript:;">诉求问题</a></li>
- </ul>
- <div class="tab_con" id="tabdiv0" style="height: 180px; display: block; overflow-y: auto;">
- <table class="form_table" style="width: 100%; height: auto;">
- <col width="95px" />
- <col />
- <col width="95px" />
- <col />
- <col width="95px" />
- <col />
- <tbody>
- <tr>
- <th>诉求类型:
- </th>
- <td>
- <asp:TextBox ID="txtTsType" runat="server" Style="width: 120px;"></asp:TextBox><asp:HiddenField
- ID="hiddTsType" runat="server" Value="0" />
- </td>
- <th>诉求人:
- </th>
- <td>
- <asp:TextBox ID="txtTsName" runat="server" CssClass="txtInput normal" Style="width: 120px;"></asp:TextBox>
- </td>
- <th>诉求人电话:
- </th>
- <td>
- <asp:TextBox ID="txtTsPhone" runat="server" CssClass="txtInput normal" Style="width: 120px;"></asp:TextBox>
- </td>
- </tr>
- <tr>
- <th>承办单位:
- </th>
- <td>
- <asp:TextBox ID="txtByDept" runat="server" Style="width: 120px;"></asp:TextBox><asp:HiddenField
- ID="hiddByDept" runat="server" Value="0" />
- </td>
- <th>工单处理人</th>
- <td>
- <div style="float: left;">
- <asp:TextBox ID="txtJDDept" runat="server" Style="display: none;"></asp:TextBox><asp:HiddenField
- ID="hiddJDDept" runat="server" Value="0" />
- <asp:TextBox ID="txtJDUser" runat="server" CssClass="txtInput normal" onkeyup="FastSearch();"
- Style="width: 120px;"></asp:TextBox><asp:HiddenField ID="hiddJDUser" runat="server"
- Value="0" />
- </div>
- <div style="float: left; padding-top: 2px; display: none;">
- <div id="selectDeptUser" onclick="SelectJDUser();"
- alt="选择处理人" style="cursor: pointer; width: 21px; height: 19px; background: url(../images/btn_off_lookup.gif) no-repeat;">
-
- </div>
- </div>
- </td>
- <th>直接接单说明</th>
- <td><asp:TextBox ID="F_EXAMINETYPE" runat="server" CssClass="txtInput normal" Style="width: 120px;"></asp:TextBox></td>
- </tr>
- <tr>
- <th>诉求内容:
- </th>
- <td colspan="5">
- <textarea id="txtTsContent" cols="20" rows="2" runat="server" class="txtInput normal"
- style="width: 600px; height: 40px;"></textarea>
- </td>
-
- </tr>
- </tbody>
- </table>
- </div>
-
- <div id="divOpt0" runat="server" style="width: 100%; text-align: center;">
- </div>
- </div>
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
|