username@email.com
3 天以前 e8e3122fdc4844202fb9e05477d47139e47a8aae
CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx
@@ -5,7 +5,16 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>批复请示</title>
    <uc:CMSHead ID="CMSHead1" runat="server" />
   <uc:CMSHead ID="CMSHead1" runat="server" />
     <script type="text/javascript">
         //查看客户资料
         function Viewkaipiao(SellerOrderId) {
             top.Dialog.open({ URL: "/Pages/business/WaixieOrderPrint.aspx?Keyid=&SellerOrderId=" + SellerOrderId, Title: "查看外协订单", Width: 1080, Height: 650 });
         }
     </script>
    <style type="text/css">
        .w70px{ width:70px;}
        .wx100px{ width:100px;}
@@ -80,6 +89,14 @@
                        </div>
                    </td>
                </tr>
                 <tr   style='<%=planDataType=="14"?"":"display:none;"  %>'>
                <td class="ali03">
                   订单详情:
                </td>
                <td colspan="3">
                <a href='javascript:void(0)' title='查看订单' class='a_under' style="color:red;" onclick='Viewkaipiao( "<%=DindanId %>")'>  查看订单   </a>
                </td>
            </tr>
                  <tr  style='<%=planDataType=="14"||planDataType=="15"?"":"display:none;"  %>' >
                   
                    <td class="ali03 " >
@@ -102,12 +119,12 @@
                <td   colspan="6">
                   是否申请付款:
                 
                    <span id="spanShifoushenqingfukuan" runat="server"></span>&nbsp;&nbsp;&nbsp;&nbsp;
                    <span id="spanShifoushenqingfukuan" runat="server"></span>&nbsp;&nbsp;
               
                        故障责任人: <select keepDefaultStyle="true" runat="server" id="selZerenren" class="wx100px" >
                        故障责任人: <select  id="selZerenren"  runat="server" keepdefaultstyle="true" selinputhtml="True"  style=" width:100px;"  >
                       
                    </select>
                     &nbsp;&nbsp;&nbsp;&nbsp;担责费用:<input id='txtDanzePrice' runat="server" maxlength='18'  class="float"   /></td>
                     &nbsp;&nbsp;担责费用:<input id='txtDanzePrice' runat="server" maxlength='18'  class="float"  style=" width:100px;"   /></td>
                   
                    
            </tr>
@@ -145,4 +162,52 @@
    </div>
    </form>
</body>
     <script type="text/javascript" language="javascript">
         //为Select新增过滤功能
         function SelectAddSearch() {
             $("select[SelInputHtml='True']").each(function (i, v) {
                 $(this).unbind("blur");
                 var old = $(this).html();
                 var oldObject = $(this).clone();
                 var sign = "selectS" + i;
                 $(v).attr("sign", sign);
                 var inputClass = "input_" + sign;
                 var html = "<span style='margin-left:10px'>过滤:</span><input type='text' class='" + inputClass + "' style='width:80px;height:18px;line-height:18px;'/>";
                 $(v).after(html);
                 $("." + inputClass).blur(function () {
                     var nowval = $(this).val().trim();
                     var output = "";
                     if (nowval == "" || nowval == null) {
                         output = old;
                     } else {
                         output += "<option value=''>请选择</option>";
                         var valueArr = new Array();
                         oldObject.find("option").each(function (ii, vv) {
                             var value = $.trim($(vv).attr("value"));
                             var text = $.trim($(vv).text());
                             if (text.indexOf(nowval) >= 0)
                                 valueArr.push(value + "|||" + text);
                         });
                         for (var ss in valueArr) {
                             var s = valueArr[ss];
                             if (s.split("|||").length == 2) {
                                 var value1 = s.split("|||")[0];
                                 var text1 = s.split("|||")[1];
                                 output += "<option value='" + value1 + "'>" + text1 + "</option>";
                             }
                         }
                     }
                     $(v).html(output);
                 });
             });
         }
         $(function () {
             SelectAddSearch();
         });
     </script>
</html>