details.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {extend name="common/common2" /}
  2. {block name="main"}
  3. <div class="ibox float-e-margins">
  4. <div class="ibox-content">
  5. <table class="table table-bordered custom-table">
  6. <tbody>
  7. <tr>
  8. <th class="custom-table-th">编号</th><td>{$info['id']}</td>
  9. </tr>
  10. <tr>
  11. <th class="custom-table-th">会议室</th><td>{$info['meeting_room']}</td>
  12. </tr>
  13. <tr>
  14. <th class="custom-table-th">申请人</th><td>{$info['apply_user']}</td>
  15. </tr>
  16. <tr>
  17. <th class="custom-table-th">使用部门</th><td>{$info['dep_name']}</td>
  18. </tr>
  19. <tr>
  20. <th class="custom-table-th">申请日期</th><td>{$info['create_time']}</td>
  21. </tr>
  22. <tr>
  23. <th class="custom-table-th">开始时间</th><td>{$info['start_time']}</td>
  24. </tr>
  25. <tr>
  26. <th class="custom-table-th">结束时间</th><td>{$info['end_time']}</td>
  27. </tr>
  28. <tr>
  29. <th class="custom-table-th">状态</th>
  30. {if condition="$info['status'] eq 0"}
  31. <td><span class="text-primary">审核中</span></td>
  32. {elseif condition="$info['status'] eq 1"}
  33. <td><span class="text-info">已同意</span></td>
  34. {elseif condition="$info['status'] eq 2"}
  35. <td><span class="text-danger">已拒绝</span></td>
  36. {elseif condition="$info['status'] eq 3"}
  37. <td><span class="text-muted">已取消</span></td>
  38. {/if}
  39. </tr>
  40. <tr>
  41. <th class="custom-table-th">参会人数</th><td>{$info['nums']}</td>
  42. </tr>
  43. <tr>
  44. <th class="custom-table-th">参会人员</th><td>{$info['user_name']}</td>
  45. </tr>
  46. <tr>
  47. <th class="custom-table-th">设备</th><td>{$info['meeting_devices']}</td>
  48. </tr>
  49. <tr>
  50. <th class="custom-table-th">横幅</th><td>{$info['banner']}</td>
  51. </tr>
  52. <tr>
  53. <th class="custom-table-th">会议内容</th><td>{$info['theme']}</td>
  54. </tr>
  55. {if ($info['status'] == 1 || $info['status'] == 2) }
  56. <tr>
  57. <th class="custom-table-th">审批人</th><td>{$info['approver_user']}</td>
  58. </tr>
  59. <tr>
  60. <th class="custom-table-th">审批意见</th><td>{$info['apply_remark']}</td>
  61. </tr>
  62. <tr>
  63. <th class="custom-table-th">审批日期</th><td>{$info['apply_time']}</td>
  64. </tr>
  65. {/if}
  66. {if ($info['status'] == 3)}
  67. <tr>
  68. <th class="custom-table-th">取消日期</th><td>{$info['cancel_time']}</td>
  69. </tr>
  70. {/if}
  71. </tbody>
  72. </table>
  73. </div>
  74. </div>
  75. {/block}