From e890c4fb5be5304a28279fc868951b863d608719 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期二, 21 十月 2025 10:09:53 +0800
Subject: [PATCH] 提交
---
CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx | 98 ++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 97 insertions(+), 1 deletions(-)
diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx b/CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx
index 3f0048d..cb4aa96 100644
--- a/CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx
+++ b/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,45 @@
</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>
+
+ 鏁呴殰璐d换浜猴細 <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>
@@ -114,4 +162,52 @@
</div>
</form>
</body>
+ <script type="text/javascript" language="javascript">
+ //涓篠elect鏂板杩囨护鍔熻兘
+ 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>
--
Gitblit v1.9.1