1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>查询模块</title>
- <script type="text/javascript" src="views/xt/qxgl/qxglSearchModule.js"></script>
- <script type="text/javascript">
- loadSelect('$!from');
-
- //回车搜索
- $(document).keydown(function(event){
- if(event.keyCode == 13)
- execute('search');
- });
- </script>
- </head>
- <body>
- <table width="100%" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td valign="top" style="background-color:#f7f6f6;">
- <table width="99%" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td height="3"></td>
- </tr>
- <tr>
- <td height="25" colspan="2">
- <span id="dmTitle"></span>
- <input type="text" name="dmValue" id="dmValue" value="$!dmValue" style="width:150; display: none;" />
- <span id="mcTitle"></span>
- <input type="text" name="mcValue" id="mcValue" value="$!mcValue" style="width:150; display: none;" />
- <input type="button" style="cursor: pointer;" id="search" from="$!from" callBackFunName="$!callBackFunName" value=" 搜索 " />
- #set($display = "")
- <div style="float: right; display: $display">
- #if(("$!xtwh_qxgl_qxxx_insert" == "true" && "$!from" == "1") || ("$!xtwh_qxgl_jsxx_insert" == "true" && "$!from" == "2"))
- <div class="add">
- <ul>
- <li><a href="#" onclick="javascript:preAddQxgl('$!from');">新建</a></li>
- </ul>
- </div>
- #end
- <!-- <div class="print">
- <ul>
- <li><a href="#" onclick="javascript:prePrintQxgl('$!from');">打印</a></li>
- </ul>
- </div> -->
- #if(("$!xtwh_qxgl_qxxx_export" == "true" && "$!from" == "1") || ("$!xtwh_qxgl_qxxx_export" == "true" && "$!from" == "2"))
- <div class="export">
- <ul>
- <li><a href="#" onclick="javascript:exportExcelQxgl('$!from');">导出</a></li>
- </ul>
- </div>
- #end
- </div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|