TrendToolEdit.aspx 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TrendToolEdit.aspx.cs"
  2. Inherits="CB.Admin.Plugins.TrendTool.TrendToolListEdit" %>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>过滤项配置</title>
  7. <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
  8. <script src="../../static/js/jquery.js" type="text/javascript"></script>
  9. </head>
  10. <body>
  11. <form id="form1" runat="server">
  12. <div class="box">
  13. <div class="title">
  14. <span>过滤项配置</span>
  15. </div>
  16. <div class="content">
  17. <div class="listtable">
  18. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
  19. <col width="100" />
  20. <col />
  21. <tr>
  22. <td>
  23. PageID
  24. </td>
  25. <td>
  26. <div class="left">
  27. <asp:HiddenField ID="txtConfigID" runat="server" />
  28. <asp:TextBox ID="txtPageID" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(必填)</span>
  29. </div>
  30. </td>
  31. </tr>
  32. <tr>
  33. <td>
  34. 过滤项名称
  35. </td>
  36. <td>
  37. <div class="left">
  38. <asp:TextBox ID="txtFilterTypeName" runat="server"></asp:TextBox>&nbsp;&nbsp;<span
  39. style="color: Red;">(必填)</span>
  40. </div>
  41. </td>
  42. </tr>
  43. <tr>
  44. <td class="None">
  45. 枚举类型
  46. </td>
  47. <td>
  48. <div class="left">
  49. <asp:DropDownList ID="ddlFilterFunEnum" runat="server">
  50. </asp:DropDownList>
  51. &nbsp;&nbsp;<span style="color: Red;">(必填)</span>
  52. </div>
  53. </td>
  54. </tr>
  55. <tr>
  56. <td>
  57. 过滤项排序
  58. </td>
  59. <td>
  60. <div class="left">
  61. <asp:TextBox ID="txtFilterOrder" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(必填)</span>
  62. </div>
  63. </td>
  64. </tr>
  65. <tr>
  66. <td>
  67. 过滤项编号
  68. </td>
  69. <td>
  70. <div class="left">
  71. <asp:TextBox ID="txtFilterNumber" runat="server"></asp:TextBox>&nbsp;&nbsp;<span
  72. style="color: Red;">(必填)</span>
  73. </div>
  74. </td>
  75. </tr>
  76. <tr>
  77. <td class="None">
  78. div或tr包括
  79. </td>
  80. <td>
  81. <div class="left">
  82. <asp:DropDownList ID="ddlIncludeHtml" runat="server">
  83. <asp:ListItem Value="tr">tr</asp:ListItem>
  84. <asp:ListItem Value="div">div</asp:ListItem>
  85. </asp:DropDownList>
  86. </div>
  87. </td>
  88. </tr>
  89. <tr>
  90. <td class="None">
  91. 页面分组
  92. </td>
  93. <td>
  94. <div class="left">
  95. <asp:DropDownList ID="ddlPageGroup" runat="server">
  96. <asp:ListItem Value="0">0</asp:ListItem>
  97. <asp:ListItem Value="1">1</asp:ListItem>
  98. </asp:DropDownList>
  99. </div>
  100. </td>
  101. </tr>
  102. <tr>
  103. <td>
  104. 过滤项类型
  105. </td>
  106. <td>
  107. <div class="left">
  108. <asp:DropDownList ID="ddlIsNorm" runat="server">
  109. <asp:ListItem Value="1" Selected="True">标准过滤</asp:ListItem>
  110. <asp:ListItem Value="2">特殊过滤</asp:ListItem>
  111. </asp:DropDownList>
  112. </div>
  113. </td>
  114. </tr>
  115. <tr>
  116. <td class="None">
  117. 是否基本数据
  118. </td>
  119. <td>
  120. <div class="left">
  121. <asp:DropDownList ID="ddlIsBaseData" runat="server">
  122. <asp:ListItem Value="false" Selected="True">否</asp:ListItem>
  123. <asp:ListItem Value="true">是</asp:ListItem>
  124. </asp:DropDownList>
  125. </div>
  126. </td>
  127. </tr>
  128. <tr>
  129. <td>
  130. 是否有效
  131. </td>
  132. <td>
  133. <div class="left">
  134. <asp:DropDownList ID="ddlFilterStatus" runat="server">
  135. <asp:ListItem Value="true" Selected="True">是</asp:ListItem>
  136. <asp:ListItem Value="false">否</asp:ListItem>
  137. </asp:DropDownList>
  138. </div>
  139. </td>
  140. </tr>
  141. <tr>
  142. <td class="None">
  143. 是否保存数据
  144. </td>
  145. <td>
  146. <div class="left">
  147. <asp:DropDownList ID="ddlFilterIsSave" runat="server">
  148. <asp:ListItem Value="true">是</asp:ListItem>
  149. <asp:ListItem Value="false" Selected="True">否</asp:ListItem>
  150. </asp:DropDownList>
  151. &nbsp;&nbsp;<span style="color: Red;">(必填)</span>
  152. </div>
  153. </td>
  154. </tr>
  155. <tr>
  156. <td>
  157. 头信息
  158. </td>
  159. <td>
  160. <div class="left">
  161. <asp:TextBox ID="txtFilterHeader" runat="server" TextMode="MultiLine" Width="600px"
  162. Height="70px"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(必填)</span></div>
  163. </td>
  164. </tr>
  165. <tr>
  166. <td>
  167. 描述信息
  168. </td>
  169. <td>
  170. <div class="left">
  171. <asp:TextBox ID="txtFilterRemark" runat="server" TextMode="MultiLine" Width="600px"
  172. Height="70px"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(必填)</span></div>
  173. </td>
  174. </tr>
  175. <tr>
  176. <td colspan="1">
  177. 操 作
  178. </td>
  179. <td>
  180. <div class="left">
  181. <asp:Button ID="btnUpdate" runat="server" Text=" 保 存 " OnClick="btnUpdate_Click" />
  182. <input type="button" value="返回项列表" onclick="BackList();" />
  183. </div>
  184. </td>
  185. </tr>
  186. </table>
  187. </div>
  188. </div>
  189. </div>
  190. </form>
  191. </body>
  192. </html>
  193. <script type="text/javascript" language="javascript">
  194. var BackList = function ()
  195. {
  196. window.location.href = "/admin/Plugins/TrendTool/TrendToolList.aspx?Id=" + $('#<%=txtPageID.ClientID %>').val() + "&authPage=TrendToolsPageList";
  197. }
  198. </script>