RptQMarketBaseInfo.cshtml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. 
  2. @{
  3. Layout = null;
  4. }
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <meta name="viewport" content="width=device-width" />
  9. <title>RptQMarketBaseInfo</title>
  10. <link href="~/easyui/themes/default/easyui.css" rel="stylesheet" />
  11. <link rel="stylesheet" type="text/css" href="~/easyui/themes/icon.css" />
  12. <link href="~/Content/css/bootstrap.min.css" rel="stylesheet" />
  13. <link href="~/Content/js/plugins/layer/skin/layer.css" rel="stylesheet" />
  14. <script src="~/Content/js/jquery.min.js"></script>
  15. <script src="~/Content/js/bootstrap.min.js"></script>
  16. <script src="~/easyui/jquery.easyui.min.js"></script>
  17. <script src="~/easyui/jquery.easyui.mobile.js"></script>
  18. <script src="~/easyui/locale/easyui-lang-zh_CN.js"></script>
  19. <script src="~/Content/js/plugins/layer/laydate/laydate.js"></script>
  20. <script src="~/Content/js/plugins/layer/layer.min.js"></script>
  21. <script src="~/js/Utils.js"></script>
  22. <style>
  23. #Search_Panel .panel-header {
  24. height: 30px;
  25. padding-top: 8px;
  26. text-align: center;
  27. font-size: 14px;
  28. }
  29. #Search_Panel table.panel-table {
  30. width: 900px;
  31. }
  32. #Search_Panel td.td-label {
  33. width: 5%;
  34. text-align: right;
  35. padding: 3px 10px 3px 0;
  36. }
  37. #Search_Panel td.td-input {
  38. width: 10%;
  39. text-align: left;
  40. }
  41. #Search_Panel .td-input input,
  42. #Search_Panel .td-input select {
  43. width: 150px;
  44. height: 22px;
  45. }
  46. #Search_Panel .panel.easyui-fluid {
  47. margin-bottom: 5px;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <section id="Search_Panel">
  53. <div id="" class="easyui-panel" title=""
  54. style="width: 100%; height: 120px; padding: 10px;"
  55. data-options="collapsible:true">
  56. <table class="panel-table">
  57. <tr>
  58. <td class="td-label"><label for="MarketTypeID">主体类型</label></td>
  59. <td class="td-input">
  60. <select class="easyui-combobox" style="height: 22px;width:200px" id="MarketTypeID" name="MarketTypeID" >
  61. <option value="">全部</option>
  62. @Html.Raw(ViewBag.SelMarketTypeID)
  63. </select>
  64. </td>
  65. <td colspan="4" style="width: 6%;text-align: left;">
  66. <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>
  67. </td>
  68. </tr>
  69. </table>
  70. </div>
  71. </section>
  72. <script>
  73. function btn_Query() {
  74. window.open("/Reports/RptPMarketBaseInfo?MarketTypeID=" + $('#MarketTypeID').combobox('getValue'));
  75. }
  76. </script>
  77. </body>
  78. </html>