123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <!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>
- input {
- height: 30px;
- border-radius: 4px;
- border: 1px solid #ccc;
- box-shadow: none;
- text-indent: 10px;
- margin-right: 5px;
- float:left;
- }
- .red {
- color: red;
- }
- .yellow {
- color: #FF9900;
- }
- .ims-box {
- margin: 20px;
- }
- .screen > div {
- margin-right: 5px;
- }
- .screen button {
- padding: 4px 12px;
- }
- .table-box {
- margin-top: 30px;
- }
- .table-box table,
- .table-box table th {
- text-align: center;
- }
- .table-box button {
- margin-right: 5px;
- }
- .stop-layer-box, .resubmit-layer-box, .delete-layer-box {
- line-height: 140px;
- text-align: center;
- }
- .resubmit-layer-box input {
- line-height: 20px;
- }
- .urge-layer-box {
- margin-top: 30px;
- margin-left: 30px;
- }
- .urge-layer-box textarea {
- margin-left: 15px;
- vertical-align: top;
- }
- .alert-msg {
- text-align: center;
- vertical-align: top;
- }
- .layui-col-md12 {
- width: 100%;
- }
- .layui-card:last-child {
- margin-bottom: 0;
- }
- .layui-card {
- margin-bottom: 15px;
- border-radius: 2px;
- background-color: #fff;
- box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
- }
- .layui-card-header {
- position: relative;
- height: 42px;
- line-height: 42px;
- padding: 0 15px;
- border-bottom: 1px solid #f6f6f6;
- color: #333;
- border-radius: 2px 2px 0 0;
- font-size: 14px;
- background: #e2eaed;
- }
- .layui-card-body {
- position: relative;
- padding: 10px 15px;
- line-height: 24px;
- }
- </style>
- </head>
- <body>
- <div class="ims-box">
- <div style="position: relative;top: 15px;bottom: 15px;">
- <div class="layui-col-md12">
- <div class="layui-card">
- <div class="layui-card-header">任务信息</div>
- <div class="layui-card-body">
- <table class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable">
- <tr>
- <td>云印点</td>
- <td><?php echo $data['centerName'];?></td>
- </tr>
- <tr>
- <td>云印点联系人</td>
- <td><?php echo $data['contact'];?></td>
- </tr>
- <tr>
- <td>联系电话</td>
- <td><?php echo $data['contactMobile'];?></td>
- </tr>
- <tr>
- <td>学校</td>
- <td><?php echo $data['schoolName'];?></td>
- </tr>
- <tr>
- <td>发起人</td>
- <td><?php echo $data['sendPerson'];?></td>
- </tr>
- <tr>
- <td>发起时间</td>
- <td><?php echo $data['sendTime'];?></td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </div>
- <div style="position: relative;top: 15px;bottom: 15px;">
- <div class="layui-col-md12">
- <div class="layui-card">
- <div class="layui-card-header">收货地址</div>
- <div class="layui-card-body">
- <table class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable">
- <tr>
- <td>快递商</td>
- <td><?php echo $data['expressName'];?></td>
- <td>运单号</td>
- <td><?php echo $data['expressNo'];?></td>
- </tr>
- <tr>
- <td>运送联系人</td>
- <td><?php echo $data['expressPerson'];?></td>
- <td>运送电话</td>
- <td><?php echo $data['expressMobile'];?></td>
- </tr>
- <tr>
- <td>收货人</td>
- <td><?php echo $data['coachName'];?></td>
- <td>电话</td>
- <td><?php echo $data['coachMobile'];?></td>
- </tr>
- <tr>
- <td>收货地址</td>
- <td><?php echo $data['schoolAddress'];?></td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </div>
- <div style="position: relative;top: 15px;bottom: 15px;">
- <div class="layui-col-md12">
- <div class="layui-card">
- <div class="layui-card-header">任务转发</div>
- <div class="layui-card-body">
- <table class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable">
- <tr>
- <th>转发前</th>
- <th>转发后</th>
- <th>操作时间</th>
- <th>操作人</th>
- </tr>
- <?php if(!empty($data['logResDTOList'])){
- foreach($data['logResDTOList'] as $v)
- {
- ?>
- <tr>
- <td><?php echo $v['oldCenterName']; ?></td>
- <td><?php echo $v['newCenterName']; ?></td>
- <td><?php echo $v['createTime']; ?></td>
- <td><?php echo $v['createName']; ?></td>
- </tr>
- <?php
- }
- }?>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|