productUnSign.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <title>产品未签名</title>
  7. <meta name="description" content="">
  8. <meta name="keywords" content="">
  9. <link href="/css/ims/base.css" rel="stylesheet">
  10. <link rel="stylesheet" type="text/css" href="/css/ims/bootstrap.min.css"/>
  11. <link rel="stylesheet" type="text/css" href="/css/ims/ace.min.css"/>
  12. <style>
  13. .green {
  14. color: green;
  15. }
  16. .red {
  17. color: red;
  18. }
  19. .ims-box {
  20. margin: 20px;
  21. }
  22. .screen > div {
  23. float: left;
  24. margin-right: 8px;
  25. }
  26. .screen .date > input {
  27. height: 30px;
  28. border-radius: 4px;
  29. border: 1px solid #ccc;
  30. box-shadow: none;
  31. text-indent: 10px;
  32. }
  33. .screen .purposeOrderNo > input {
  34. height: 30px;
  35. border-radius: 4px;
  36. border: 1px solid #ccc;
  37. box-shadow: none;
  38. text-indent: 10px;
  39. }
  40. .screen button {
  41. padding: 4px 12px;
  42. }
  43. .table-box {
  44. margin-top: 30px;
  45. }
  46. .btn-formal-order {
  47. cursor: pointer;
  48. }
  49. .application-number-box {
  50. margin-top: 50px;
  51. text-align: center;
  52. }
  53. .application-number-box span {
  54. margin-right: 20px;
  55. }
  56. .layui-layer-btn .layui-layer-btn0 {
  57. border-color: #15ae68 !important;
  58. background-color: #15ae68 !important;
  59. color: #fff;
  60. }
  61. .btn-date_show{
  62. display: inline-block;width: 170px;overflow: hidden; text-overflow:ellipsis; white-space: nowrap;
  63. }
  64. #imsCode{
  65. width:100%;
  66. padding:15px;
  67. }
  68. .code-list{
  69. float: left;
  70. width:50%;
  71. }
  72. .code-list span{
  73. width: 100%;
  74. text-align: center;
  75. display: inline-block;
  76. }
  77. .code-list span img{
  78. margin:0 auto;
  79. }
  80. </style>
  81. </head>
  82. <body>
  83. <div class="ims-box">
  84. <div>
  85. <table id="record-table"
  86. class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable"
  87. style="font-size:12px">
  88. <thead>
  89. <tr>
  90. <th>名称</th>
  91. <th>完成日期</th>
  92. <th>年级</th>
  93. <th>班级</th>
  94. <th>产品</th>
  95. <th>产品类型</th>
  96. </tr>
  97. </thead>
  98. <tbody>
  99. <?php if ($list):
  100. $gradeArr=array(
  101. 1=>'高一',
  102. 2=>'高二',
  103. 3=>'高三'
  104. );
  105. ?>
  106. <?php foreach ($list as $item): ?>
  107. <tr>
  108. <td><?php echo $item['name']; ?></td>
  109. <td><?php echo date('Y-m-d H:i:s',$item['time']); ?></td>
  110. <td><?php echo isset($gradeArr[$item['grade']])?$gradeArr[$item['grade']]:''; ?></td>
  111. <td><?php echo $item['className']; ?></td>
  112. <td><?php echo $item['productName']; ?></td>
  113. <td><?php if(in_array($item['productType'],array(1,2,4,6,7,8,9))){echo '考试类型';}else{echo '非考试类型';} ?></td>
  114. </tr>
  115. <?php endforeach; ?>
  116. <?php endif; ?>
  117. </tbody>
  118. </table>
  119. </div>
  120. </div>
  121. <script src="/js/productset/jquery.min.js"></script>
  122. <script src="/js/layer/layer.js"></script>
  123. <script src="/js/ims/xsgl.js"></script>
  124. <script src="/js/ims/jquery.datetimepicker.js"></script>
  125. <link rel="stylesheet" type="text/css" href="/css/ims/jquery.datetimepicker.css"/>
  126. <script type="text/javascript" src="/js/ims/qrcode.min.js"></script>
  127. </body>
  128. </html>