1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
-
- @{
- Layout = null;
- }
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width" />
- <title>RptQMarketBaseInfo</title>
- <link href="~/easyui/themes/default/easyui.css" rel="stylesheet" />
- <link rel="stylesheet" type="text/css" href="~/easyui/themes/icon.css" />
- <link href="~/Content/css/bootstrap.min.css" rel="stylesheet" />
- <link href="~/Content/js/plugins/layer/skin/layer.css" rel="stylesheet" />
- <script src="~/Content/js/jquery.min.js"></script>
- <script src="~/Content/js/bootstrap.min.js"></script>
- <script src="~/easyui/jquery.easyui.min.js"></script>
- <script src="~/easyui/jquery.easyui.mobile.js"></script>
- <script src="~/easyui/locale/easyui-lang-zh_CN.js"></script>
- <script src="~/Content/js/plugins/layer/laydate/laydate.js"></script>
- <script src="~/Content/js/plugins/layer/layer.min.js"></script>
- <script src="~/js/Utils.js"></script>
- <style>
- #Search_Panel .panel-header {
- height: 30px;
- padding-top: 8px;
- text-align: center;
- font-size: 14px;
- }
- #Search_Panel table.panel-table {
- width: 900px;
- }
- #Search_Panel td.td-label {
- width: 5%;
- text-align: right;
- padding: 3px 10px 3px 0;
- }
- #Search_Panel td.td-input {
- width: 10%;
- text-align: left;
- }
- #Search_Panel .td-input input,
- #Search_Panel .td-input select {
- width: 150px;
- height: 22px;
- }
- #Search_Panel .panel.easyui-fluid {
- margin-bottom: 5px;
- }
- </style>
- </head>
- <body>
- <section id="Search_Panel">
- <div id="" class="easyui-panel" title=""
- style="width: 100%; height: 120px; padding: 10px;"
- data-options="collapsible:true">
- <table class="panel-table">
- <tr>
- <td class="td-label"><label for="MarketTypeID">主体类型</label></td>
- <td class="td-input">
- <select class="easyui-combobox" style="height: 22px;width:200px" id="MarketTypeID" name="MarketTypeID" >
- <option value="">全部</option>
- @Html.Raw(ViewBag.SelMarketTypeID)
- </select>
- </td>
- <td colspan="4" style="width: 6%;text-align: left;">
- <a class="easyui-linkbutton" id="Save_Search" data-options="iconCls:'icon-search'" href="javascript:void(0)" onclick="btn_Query()" style="width:120px;margin-right:110px">显示打印结果</a>
- </td>
- </tr>
-
- </table>
- </div>
- </section>
-
- <script>
-
- function btn_Query() {
- window.open("/Reports/RptPMarketBaseInfo?MarketTypeID=" + $('#MarketTypeID').combobox('getValue'));
- }
-
-
- </script>
- </body>
- </html>
|