| | |
| | | <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;} |
| | |
| | | </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 " > |
| | | 审批证明: |
| | | </td> |
| | | <td colspan="3"> |
| | | <asp:Repeater ID="RepClientList" runat="server"> |
| | | <ItemTemplate> |
| | | |
| | | <a title="查看图片" target="view_window" href="<%#Eval("PlanAttachment")%>"> |
| | | <img src="<%#Eval("PlanAttachment")%>" width="20" height="20" /> |
| | | </a> |
| | | |
| | | </ItemTemplate> |
| | | </asp:Repeater> |
| | | </td> |
| | | </tr> |
| | | |
| | | <tr style='<%=planDataType=="18"?"":"display:none;" %>'> |
| | | <td colspan="6"> |
| | | 是否申请付款: |
| | | |
| | | <span id="spanShifoushenqingfukuan" runat="server"></span> |
| | | |
| | | 故障责任人: <select id="selZerenren" runat="server" keepdefaultstyle="true" selinputhtml="True" style=" width:100px;" > |
| | | |
| | | </select> |
| | | 担责费用:<input id='txtDanzePrice' runat="server" maxlength='18' class="float" style=" width:100px;" /></td> |
| | | |
| | | |
| | | </tr> |
| | | </table> |
| | | </fieldset> |
| | | <fieldset> |
| | |
| | | </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> |