You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
4.0 KiB

8 months ago
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8. <meta name="description" content="">
  9. <meta name="author" content="">
  10. <link rel="icon" href="/favicon.ico">
  11. <title>${projectTitle!"MESPda"}</title>
  12. <!-- Bootstrap core CSS -->
  13. <link href="/pda/bootstrap/3.3.7/bootstrap.min.css" rel="stylesheet">
  14. <link href="/pda/bootstrap/3.3.7/bootstrap-theme.min.css" rel="stylesheet">
  15. <link rel="stylesheet" type="text/css"
  16. href="/pda/jeasyui/themes/default/easyui.css">
  17. <link rel="stylesheet" type="text/css" href="/pda/jeasyui/themes/icon.css">
  18. <!-- Custom styles for this template -->
  19. <link href="/pda/css/base.css" rel="stylesheet">
  20. <link rel="stylesheet" type="text/css" href="/css/button.css">
  21. <style type="text/css">
  22. /* reset ivu-btn*/
  23. .ivu-btn {
  24. padding: 6px 6px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="app">
  30. <input type="hidden" id="flag" value="${Session.flag!'N'}">
  31. <input type="hidden" id="supplierId" value="${Session.supplierId!'N'}">
  32. <div class="mint-tab-container screenHeight">
  33. <header class="mint-header is-fixed">
  34. <div class="mint-header-button is-left">
  35. <div class="header-title">
  36. <a onclick="goBackHome()" class="go-back"><i class="mintui mintui-back"></i></a>
  37. <span>融欣MES - 选择供应商</span>
  38. </div>
  39. </div>
  40. <h1 class="mint-header-title"></h1>
  41. <div class="mint-header-button is-right"></div>
  42. </header>
  43. <div class="ivu-table" style="font-size: 11px;">
  44. <div class="ivu-table-header">
  45. <table style="width: 100%;" cellspacing="0" cellpadding="0"
  46. border="0" style="table-layout:fixed;">
  47. <colgroup>
  48. <col width="25%">
  49. <col width="25%">
  50. <col width="50%">
  51. </colgroup>
  52. <thead>
  53. <tr>
  54. <th class="" style="text-align:center">
  55. <span>操作</span>
  56. </th>
  57. <th class="" style="text-align:center">
  58. <span>供应商编号</span>
  59. </th>
  60. <th class="" style="text-align:center">
  61. <span>供应商名称</span>
  62. </th>
  63. </tr>
  64. </thead>
  65. </table>
  66. </div>
  67. <div class="ivu-table-body" style="">
  68. <table style="width: 100%;" cellspacing="0" cellpadding="0"
  69. border="0">
  70. <colgroup>
  71. <col width="25%">
  72. <col width="25%">
  73. <col width="50%">
  74. </colgroup>
  75. <tbody class="ivu-table-tbody" id = "supplier_table" >
  76. </tbody>
  77. </table>
  78. </div>
  79. <div class="ivu-table-tip" style="display: none;">
  80. <table cellspacing="0" cellpadding="0" border="0">
  81. <tbody>
  82. <tr>
  83. <td><span>暂无筛选结果</span></td>
  84. </tr>
  85. </tbody>
  86. </table>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. </body>
  93. <script type="text/javascript" src="/js/jquery/jquery-2.1.4.js"></script>
  94. <script type="text/javascript" src="/pda/layer/layer.js"></script>
  95. <script type="text/javascript" src="/pda/js/receipt/purchase_supplier.js"></script>
  96. <script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
  97. </html>