123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <title>产品未签名</title>
- <meta name="description" content="">
- <meta name="keywords" content="">
- <link href="/css/ims/base.css" rel="stylesheet">
- <link rel="stylesheet" type="text/css" href="/css/ims/bootstrap.min.css"/>
- <link rel="stylesheet" type="text/css" href="/css/ims/ace.min.css"/>
- <style>
- .green {
- color: green;
- }
- .red {
- color: red;
- }
- .ims-box {
- margin: 20px;
- }
- .screen > div {
- float: left;
- margin-right: 8px;
- }
- .screen .date > input {
- height: 30px;
- border-radius: 4px;
- border: 1px solid #ccc;
- box-shadow: none;
- text-indent: 10px;
- }
- .screen .purposeOrderNo > input {
- height: 30px;
- border-radius: 4px;
- border: 1px solid #ccc;
- box-shadow: none;
- text-indent: 10px;
- }
- .screen button {
- padding: 4px 12px;
- }
- .table-box {
- margin-top: 30px;
- }
- .btn-formal-order {
- cursor: pointer;
- }
- .application-number-box {
- margin-top: 50px;
- text-align: center;
- }
- .application-number-box span {
- margin-right: 20px;
- }
- .layui-layer-btn .layui-layer-btn0 {
- border-color: #15ae68 !important;
- background-color: #15ae68 !important;
- color: #fff;
- }
- .btn-date_show{
- display: inline-block;width: 170px;overflow: hidden; text-overflow:ellipsis; white-space: nowrap;
- }
- #imsCode{
- width:100%;
- padding:15px;
- }
- .code-list{
- float: left;
- width:50%;
- }
- .code-list span{
- width: 100%;
- text-align: center;
- display: inline-block;
- }
- .code-list span img{
- margin:0 auto;
- }
- </style>
- </head>
- <body>
- <div class="ims-box">
- <div>
- <table id="record-table"
- class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable"
- style="font-size:12px">
- <thead>
- <tr>
- <th>名称</th>
- <th>完成日期</th>
- <th>年级</th>
- <th>班级</th>
- <th>产品</th>
- <th>产品类型</th>
- </tr>
- </thead>
- <tbody>
- <?php if ($list):
- $gradeArr=array(
- 1=>'高一',
- 2=>'高二',
- 3=>'高三'
- );
- ?>
- <?php foreach ($list as $item): ?>
- <tr>
- <td><?php echo $item['name']; ?></td>
- <td><?php echo date('Y-m-d H:i:s',$item['time']); ?></td>
- <td><?php echo isset($gradeArr[$item['grade']])?$gradeArr[$item['grade']]:''; ?></td>
- <td><?php echo $item['className']; ?></td>
- <td><?php echo $item['productName']; ?></td>
- <td><?php if(in_array($item['productType'],array(1,2,4,6,7,8,9))){echo '考试类型';}else{echo '非考试类型';} ?></td>
- </tr>
- <?php endforeach; ?>
- <?php endif; ?>
- </tbody>
- </table>
- </div>
- </div>
- <script src="/js/productset/jquery.min.js"></script>
- <script src="/js/layer/layer.js"></script>
- <script src="/js/ims/xsgl.js"></script>
- <script src="/js/ims/jquery.datetimepicker.js"></script>
- <link rel="stylesheet" type="text/css" href="/css/ims/jquery.datetimepicker.css"/>
- <script type="text/javascript" src="/js/ims/qrcode.min.js"></script>
- </body>
- </html>
|