qxglSearchModule.htm 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>查询模块</title>
  6. <script type="text/javascript" src="views/xt/qxgl/qxglSearchModule.js"></script>
  7. <script type="text/javascript">
  8. loadSelect('$!from');
  9. //回车搜索
  10. $(document).keydown(function(event){
  11. if(event.keyCode == 13)
  12. execute('search');
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <table width="100%" align="center" cellpadding="0" cellspacing="0">
  18. <tr>
  19. <td valign="top" style="background-color:#f7f6f6;">
  20. <table width="99%" align="center" cellpadding="0" cellspacing="0">
  21. <tr>
  22. <td height="3"></td>
  23. </tr>
  24. <tr>
  25. <td height="25" colspan="2">
  26. <span id="dmTitle"></span>
  27. <input type="text" name="dmValue" id="dmValue" value="$!dmValue" style="width:150; display: none;" />
  28. <span id="mcTitle"></span>
  29. <input type="text" name="mcValue" id="mcValue" value="$!mcValue" style="width:150; display: none;" />
  30. <input type="button" style="cursor: pointer;" id="search" from="$!from" callBackFunName="$!callBackFunName" value=" 搜索 " />
  31. #set($display = "")
  32. <div style="float: right; display: $display">
  33. #if(("$!xtwh_qxgl_qxxx_insert" == "true" && "$!from" == "1") || ("$!xtwh_qxgl_jsxx_insert" == "true" && "$!from" == "2"))
  34. <div class="add">
  35. <ul>
  36. <li><a href="#" onclick="javascript:preAddQxgl('$!from');">新建</a></li>
  37. </ul>
  38. </div>
  39. #end
  40. <!-- <div class="print">
  41. <ul>
  42. <li><a href="#" onclick="javascript:prePrintQxgl('$!from');">打印</a></li>
  43. </ul>
  44. </div> -->
  45. #if(("$!xtwh_qxgl_qxxx_export" == "true" && "$!from" == "1") || ("$!xtwh_qxgl_qxxx_export" == "true" && "$!from" == "2"))
  46. <div class="export">
  47. <ul>
  48. <li><a href="#" onclick="javascript:exportExcelQxgl('$!from');">导出</a></li>
  49. </ul>
  50. </div>
  51. #end
  52. </div>
  53. </td>
  54. </tr>
  55. </table>
  56. </td>
  57. </tr>
  58. </table>
  59. </body>
  60. </html>