taskDetail.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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. input {
  14. height: 30px;
  15. border-radius: 4px;
  16. border: 1px solid #ccc;
  17. box-shadow: none;
  18. text-indent: 10px;
  19. margin-right: 5px;
  20. float:left;
  21. }
  22. .red {
  23. color: red;
  24. }
  25. .yellow {
  26. color: #FF9900;
  27. }
  28. .ims-box {
  29. margin: 20px;
  30. }
  31. .screen > div {
  32. margin-right: 5px;
  33. }
  34. .screen button {
  35. padding: 4px 12px;
  36. }
  37. .table-box {
  38. margin-top: 30px;
  39. }
  40. .table-box table,
  41. .table-box table th {
  42. text-align: center;
  43. }
  44. .table-box button {
  45. margin-right: 5px;
  46. }
  47. .stop-layer-box, .resubmit-layer-box, .delete-layer-box {
  48. line-height: 140px;
  49. text-align: center;
  50. }
  51. .resubmit-layer-box input {
  52. line-height: 20px;
  53. }
  54. .urge-layer-box {
  55. margin-top: 30px;
  56. margin-left: 30px;
  57. }
  58. .urge-layer-box textarea {
  59. margin-left: 15px;
  60. vertical-align: top;
  61. }
  62. .alert-msg {
  63. text-align: center;
  64. vertical-align: top;
  65. }
  66. .layui-col-md12 {
  67. width: 100%;
  68. }
  69. .layui-card:last-child {
  70. margin-bottom: 0;
  71. }
  72. .layui-card {
  73. margin-bottom: 15px;
  74. border-radius: 2px;
  75. background-color: #fff;
  76. box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  77. }
  78. .layui-card-header {
  79. position: relative;
  80. height: 42px;
  81. line-height: 42px;
  82. padding: 0 15px;
  83. border-bottom: 1px solid #f6f6f6;
  84. color: #333;
  85. border-radius: 2px 2px 0 0;
  86. font-size: 14px;
  87. background: #e2eaed;
  88. }
  89. .layui-card-body {
  90. position: relative;
  91. padding: 10px 15px;
  92. line-height: 24px;
  93. }
  94. </style>
  95. </head>
  96. <body>
  97. <div class="ims-box">
  98. <div style="position: relative;top: 15px;bottom: 15px;">
  99. <div class="layui-col-md12">
  100. <div class="layui-card">
  101. <div class="layui-card-header">任务信息</div>
  102. <div class="layui-card-body">
  103. <table class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable">
  104. <tr>
  105. <td>云印点</td>
  106. <td><?php echo $data['centerName'];?></td>
  107. </tr>
  108. <tr>
  109. <td>云印点联系人</td>
  110. <td><?php echo $data['contact'];?></td>
  111. </tr>
  112. <tr>
  113. <td>联系电话</td>
  114. <td><?php echo $data['contactMobile'];?></td>
  115. </tr>
  116. <tr>
  117. <td>学校</td>
  118. <td><?php echo $data['schoolName'];?></td>
  119. </tr>
  120. <tr>
  121. <td>发起人</td>
  122. <td><?php echo $data['sendPerson'];?></td>
  123. </tr>
  124. <tr>
  125. <td>发起时间</td>
  126. <td><?php echo $data['sendTime'];?></td>
  127. </tr>
  128. </table>
  129. </div>
  130. </div>
  131. </div>
  132. </div>
  133. <div style="position: relative;top: 15px;bottom: 15px;">
  134. <div class="layui-col-md12">
  135. <div class="layui-card">
  136. <div class="layui-card-header">收货地址</div>
  137. <div class="layui-card-body">
  138. <table class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable">
  139. <tr>
  140. <td>快递商</td>
  141. <td><?php echo $data['expressName'];?></td>
  142. <td>运单号</td>
  143. <td><?php echo $data['expressNo'];?></td>
  144. </tr>
  145. <tr>
  146. <td>运送联系人</td>
  147. <td><?php echo $data['expressPerson'];?></td>
  148. <td>运送电话</td>
  149. <td><?php echo $data['expressMobile'];?></td>
  150. </tr>
  151. <tr>
  152. <td>收货人</td>
  153. <td><?php echo $data['coachName'];?></td>
  154. <td>电话</td>
  155. <td><?php echo $data['coachMobile'];?></td>
  156. </tr>
  157. <tr>
  158. <td>收货地址</td>
  159. <td><?php echo $data['schoolAddress'];?></td>
  160. </tr>
  161. </table>
  162. </div>
  163. </div>
  164. </div>
  165. </div>
  166. <div style="position: relative;top: 15px;bottom: 15px;">
  167. <div class="layui-col-md12">
  168. <div class="layui-card">
  169. <div class="layui-card-header">任务转发</div>
  170. <div class="layui-card-body">
  171. <table class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable">
  172. <tr>
  173. <th>转发前</th>
  174. <th>转发后</th>
  175. <th>操作时间</th>
  176. <th>操作人</th>
  177. </tr>
  178. <?php if(!empty($data['logResDTOList'])){
  179. foreach($data['logResDTOList'] as $v)
  180. {
  181. ?>
  182. <tr>
  183. <td><?php echo $v['oldCenterName']; ?></td>
  184. <td><?php echo $v['newCenterName']; ?></td>
  185. <td><?php echo $v['createTime']; ?></td>
  186. <td><?php echo $v['createName']; ?></td>
  187. </tr>
  188. <?php
  189. }
  190. }?>
  191. </table>
  192. </div>
  193. </div>
  194. </div>
  195. </div>
  196. </div>
  197. </body>
  198. </html>