info.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. {extend name="common/common2" /}
  2. {block name="main"}
  3. <style>
  4. th,td{
  5. padding: 10px;
  6. }
  7. th{
  8. width: 80px;
  9. text-align: right;
  10. }
  11. .text {
  12. width: 200px;
  13. display: inline-block;
  14. }
  15. .num {
  16. margin-left: 20px;
  17. }
  18. </style>
  19. <style>
  20. .page-content{
  21. overflow: hidden;
  22. }
  23. .task-info, .patrol-task-info p,.patrol-task-info span {
  24. font-size: 16px;
  25. }
  26. .table.table-bordered th {
  27. width: 200px;
  28. }
  29. .task-info {
  30. color: #099bef;
  31. display: block;
  32. margin-top: 20px;
  33. }
  34. .patrol-task-info {
  35. margin: 5px 0;
  36. }
  37. .task-txt {
  38. margin-left: 15%;
  39. }
  40. .task-addr-axis {
  41. overflow: hidden;
  42. padding-bottom: 30px;
  43. height: 180px;
  44. /*width: 1000px;*/
  45. /*margin: 0 auto;*/
  46. }
  47. .time-horizontal {
  48. list-style-type: none;
  49. /*width: 1000px;*/
  50. padding: 0px;
  51. /*margin-top: 60px;*/
  52. }
  53. .time-horizontal li {
  54. height: 70px;
  55. float: left;
  56. position: relative;
  57. text-align: center;
  58. width: 30%;
  59. padding-top: 60px;
  60. margin-bottom: 50px;
  61. border-bottom: 2px solid #107ef1;
  62. }
  63. .time-horizontal li .yes:before {
  64. content: '';
  65. position: absolute;
  66. top: 63px;
  67. left: 48%;
  68. width: 12px;
  69. height: 12px;
  70. /*border: 2px solid #0e51e8;*/
  71. border-radius: 8px;
  72. background: #099bef;
  73. z-index: 100;
  74. }
  75. .time-horizontal li .no:before {
  76. content: '';
  77. position: absolute;
  78. top: 63px;
  79. left: 48%;
  80. width: 12px;
  81. height: 12px;
  82. /*border: 2px solid #0e51e8;*/
  83. border-radius: 8px;
  84. background: #bcc5ca;
  85. z-index: 100;
  86. }
  87. .time-horizontal li img {
  88. width: 30px;
  89. height: 33px;
  90. }
  91. .addr-txt {
  92. display: block;
  93. margin-top: 30px;
  94. }
  95. </style>
  96. <div class="row">
  97. <div class="col-sm-12">
  98. <div class="ibox float-e-margins">
  99. <div class="ibox-content">
  100. <h3>医废基本信息</h3>
  101. <table class="table table-bordered">
  102. <tr>
  103. <th>收取科室</th><td>{$info['waste_device']}</td>
  104. </tr>
  105. <tr>
  106. <th>收取人</th><td>{$info['real_name']}</td>
  107. </tr>
  108. <tr>
  109. <th>称重序列号</th><td>{$info['serial_number']}</td>
  110. </tr>
  111. <tr>
  112. <th>类别</th>
  113. <td>
  114. {$info['cate']}
  115. </td>
  116. </tr>
  117. <tr>
  118. <th>重量</th><td>{$info['weight']}kg</td>
  119. </tr>
  120. <tr>
  121. <th>收取时间</th><td>{$info['create_time']}</td>
  122. </tr>
  123. <tr>
  124. <th>是否签字</th>
  125. <td>
  126. {if $info['sign']==0} 否 {else}
  127. <img width="80" onclick="open_img(this)" src="{$info['sign_path']}" alt="">
  128. {/if}
  129. </td>
  130. </tr>
  131. </table>
  132. <p><br></p>
  133. <h3>医废流程信息</h3>
  134. <div class="patrol-task-info task-addr-axis">
  135. <ul class="time-horizontal">
  136. {if !empty($info['rlist'])}
  137. {foreach $info['rlist'] as $k=>$v}
  138. <li class="yes" style="cursor: pointer;">
  139. <a href="javascript:;">
  140. <b class="yes"></b>
  141. </a>
  142. <span class="addr-txt">
  143. {if $v['status'] == 0}已收取{/if}
  144. {if $v['status'] == 1}已交接{/if}
  145. {if $v['status'] == 2}已转运{/if}
  146. {if $v['status'] == 3}医废异常{/if}
  147. <br>
  148. {$v['real_name']} <br>
  149. {$v['create_time']} <br>
  150. </span>
  151. </li>
  152. {/foreach}
  153. {/if}
  154. </ul>
  155. </div>
  156. </div>
  157. </div>
  158. </div>
  159. </div>
  160. {/block}
  161. {block name="script"}
  162. <script>
  163. </script>
  164. {/block}