detail.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>订单详情</title>
  9. <link rel="stylesheet" href="/static/bootstrap-3.3.7/css/bootstrap.min.css" />
  10. <style>
  11. th{
  12. width: 20%;
  13. text-align: right;
  14. padding-right: 50px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div>
  20. <p><br></p>
  21. <h3 class="text-center">订单详情 &nbsp;&nbsp; {eq name="type" value="0"}<a href="{:url('Todo/lists',['orgId'=>$orgId])}"><span class="text-muted" style="font-size: 14px;">返回上一页</span></a>{/eq}</h3>
  22. <p><br></p>
  23. <table class="table table-striped text-left" style="width: 100%">
  24. <tr>
  25. <th>类型</th>
  26. <td>
  27. {eq name="info['mode']" value="1"}报修{/eq}
  28. {eq name="info['mode']" value="2"}保洁{/eq}
  29. {eq name="info['mode']" value="3"}运送{/eq}
  30. {eq name="info['mode']" value="4"}隐患预警{/eq}
  31. </td>
  32. </tr>
  33. <tr>
  34. <th>状态</th>
  35. <td>
  36. {$info['status']}
  37. </td>
  38. </tr>
  39. <tr>
  40. <th>科室</th>
  41. <td>
  42. {$info['dep']}
  43. </td>
  44. </tr>
  45. <tr>
  46. <th>内容</th>
  47. <td>
  48. {$info['content']}
  49. </td>
  50. </tr>
  51. {eq name="info['mode']" value="1"}
  52. <tr>
  53. <th>报修类型</th>
  54. <td>
  55. {$info['repair_name']}
  56. </td>
  57. </tr>
  58. {/eq}
  59. {eq name="info['mode']" value="3"}
  60. <tr>
  61. <th>运送类型</th>
  62. <td>
  63. {$info['cate_title']}
  64. </td>
  65. </tr>
  66. <tr>
  67. <th>始发地</th>
  68. <td>
  69. {$info['start']}
  70. </td>
  71. </tr>
  72. <tr>
  73. <th>目的地</th>
  74. <td>
  75. {$info['end']}
  76. </td>
  77. </tr>
  78. {/eq}
  79. <tr>
  80. <th>下单时间</th>
  81. <td>
  82. {$info['create_time']}
  83. </td>
  84. </tr>
  85. <tr>
  86. <th>派发时间</th>
  87. <td>
  88. {$info['send_time']}
  89. </td>
  90. </tr>
  91. <tr>
  92. <th>执行人</th>
  93. <td>
  94. {$info['names']}
  95. </td>
  96. </tr>
  97. </table>
  98. <p><br></p>
  99. </div>
  100. <script src="/static/jquery-1.11.3.min.js"></script>
  101. <script>
  102. function gotourl(_self) {
  103. window.location.href = $(_self).attr('data-url');
  104. }
  105. </script>
  106. </body>
  107. </html>