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.

126 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. <!-- layer的css样式 -->
  22. <link href="/pda/layer/skin/layer.css" rel="stylesheet">
  23. </head>
  24. <body>
  25. <div id="app">
  26. <header class="mint-header is-fixed">
  27. <div class="mint-header-button is-left">
  28. <div class="header-title">
  29. <a href="/pda/roll" class="go-back"><i class="mintui mintui-back"></i></a>
  30. <span>融欣MES - 关联供应商卷号</span>
  31. </div>
  32. </div>
  33. <h1 class="mint-header-title"></h1>
  34. <div class="mint-header-button is-right"></div>
  35. </header>
  36. <div class="ivu-row">
  37. <div class="r-left">未关联清单</div>
  38. <div class="ivu-table-wrapper">
  39. <div class="ivu-table">
  40. <!---->
  41. <div class="ivu-table-header">
  42. <table style="width: 100%;" cellspacing="0" cellpadding="0"
  43. border="0">
  44. <colgroup>
  45. <col width="35%">
  46. <col width="65%">
  47. </colgroup>
  48. <thead>
  49. <tr>
  50. <th class=""><div class="ivu-table-cell">
  51. <span>卷号</span>
  52. </div></th>
  53. <th class=""><div class="ivu-table-cell">
  54. <span>物料描述</span>
  55. </div></th>
  56. </tr>
  57. </thead>
  58. </table>
  59. </div>
  60. <div class="ivu-table-body" style="">
  61. <table style="width: 100%;" cellspacing="0" cellpadding="0"
  62. border="0">
  63. <colgroup>
  64. <col width="35%">
  65. <col width="65%">
  66. </colgroup>
  67. <tbody class="ivu-table-tbody">
  68. <#list baseData! as temp>
  69. <tr class="ivu-table-row">
  70. <td class="">
  71. <div class="ivu-table-cell">
  72. <span>${temp.rollNo!}</span>
  73. </div>
  74. </td>
  75. <td class="">
  76. <div class="ivu-table-cell">
  77. <span>${temp.partDescription!}</span>
  78. </div>
  79. </td>
  80. </tr>
  81. </#list>
  82. </tbody>
  83. </table>
  84. </div>
  85. <div class="ivu-table-tip" style="display: none;">
  86. <table cellspacing="0" cellpadding="0" border="0">
  87. <tbody>
  88. <tr>
  89. <td><span>暂无筛选结果</span></td>
  90. </tr>
  91. </tbody>
  92. </table>
  93. </div>
  94. <!---->
  95. <!---->
  96. <!---->
  97. </div>
  98. <!---->
  99. <object
  100. style="display: block; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; border: medium none; padding: 0px; margin: 0px; opacity: 0; z-index: -1000; pointer-events: none;"
  101. tabindex="-1" type="text/html" data="about:blank"></object>
  102. </div>
  103. </div>
  104. <div class="ivu-row" style="margin-top: 10px; margin-bottom: 10px;">
  105. <div class="ivu-col ivu-col-span-12">
  106. <a href="/pda/roll" class="ivu-btn ivu-btn-primary">
  107. <!---->
  108. <!---->
  109. <span>返回扫描</span>
  110. </a>
  111. </div>
  112. <div class="ivu-col ivu-col-span-12">
  113. <a href="/pda/publicMenu?titleName=''&menuId=0" class="ivu-btn ivu-btn-primary">
  114. <span>返回主界面</span>
  115. </a>
  116. </div>
  117. </div>
  118. </div>
  119. </body>
  120. <script type="text/javascript" src="/js/jquery/jquery-2.1.4.js"></script>
  121. <script type="text/javascript" src="/pda/layer/layer.js"></script>
  122. <script type="text/javascript" src="/pda/js/roll/roll.js"></script>
  123. <script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
  124. </html>