1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <title>数据库操作</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <META http-equiv=Pragma content=no-cache>
- <META http-equiv=Cache-Control content=no-cache>
- <META http-equiv=Expires content=0>
- <link rel="stylesheet" href="../../js/xheditor-1.1.14/common.css" type="text/css"></link>
- <script language="javascript" src="../../easyui/all.js"></script>
- <script type="text/javascript" src="../../easyui/easyui-validate.js"></script>
- <script type="text/javascript" src="../../easyui/datagrid-detailview.js"></script>
- <script type="text/javascript" src="../../commons/js/common.js"></script>
- <script type="text/javascript" src="../../commons/js/HospitalData.js"></script>
- <script type="text/javascript" src="../../commons/js/jquery.autocomplete.js"></script>
- <link rel="stylesheet" href="../../commons/css/jquery.autocomplete.css" type="text/css"></link>
- <script type="text/javascript" src="js/database_operation.js"></script>
- <link rel="stylesheet" href="../../easyui/themes/default/base_style.css" type="text/css"></link>
- </head>
- <body>
- <div id='layoutid' class="easyui-layout" data-options='fit:true' >
- <div
- data-options="region:'north',split:true,border:true,title:'医院配置'"
- style="height: 150px; padding: 10px;background-color: rgb(239, 245, 251);">
- <div
- style="margin-top: 5px; margin-bottom: 5px; font-size: 14px; font-family: Tahoma, Verdana, 微软雅黑, 新宋体;">
- <table class="queryTable" style="" border="0" cellpadding="0" cellspacing="0">
- <col width="90"/>
- <col width="160"/>
- <col width="80"/>
- <col width="160"/>
- <col width="80"/>
- <col width="160"/>
- <col width="40"/>
- <col width=""/>
- <tr>
- <td class="tdLabel">
- <label for="hospitalid" class="label">医院:</label>
- </td>
- <td class="tdField">
- <select id="hospitalid" name="filter_EQI_ghthosid" class="textWidth_100Per">
- </select>
- </td>
- <td class="tdLabel">
- <label for="insertdate" class="label">操作:</label>
- </td>
- <td class="tdField" >
- <select id="sqltype" name="sqltype" class="textWidth_100Per">
- <option value="1">查询</option>
- <option value="2">更新</option>
- <option value="3">新增</option>
- <option value="4">执行DDL</option>
- </select>
- </td>
- <td class="tdField" >
- <input type="text" id="sqltext" style="width:600px;height: 50px;font-size: 30px;"></input>
- </td>
-
- </tr>
- <tr>
- <td class="tdLabel" colspan="3">
- <input type="button" value="查询所有表" onclick="tianxie1()"></input>
- </td>
- <td >
- <input type="button" value="查询表结构" onclick="tianxie2()"></input>
- </td>
- <td >
- <input type="button" value="重置" onclick="chongzhi()"></input>
- </td>
- <td >
- <input type="button" style="width: 70px;height: 40px;" value="查询" onclick="exec()"/>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <div data-options="region:'center',border:false"
- style="padding: 0px;">
- <div id='dg'></div>
- </div>
- </div>
- </body>
- </html>
|