1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {extend name="common/common2" /}
- {block name="main"}
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h5>会议室预定详情</h5>
- <div class="ibox-tools">
- <a class="toback" href="{:url('index')}">
- 返回上一页
- </a>
- </div>
- </div>
- <div class="ibox-content">
- <div class="jqGrid_wrapper">
- <table id="table" style="border-collapse: collapse"></table>
- <div id="pager"></div>
- </div>
- <div class="ibox-content">
- <table class="table table-bordered">
- <tbody>
- <tr>
- <th style="width:80px ">编号</th><td>{$info['id']}</td>
- </tr>
- <tr>
- <th>会议室</th><td>{$info['meeting_room']}</td>
- </tr>
- <tr>
- <th>申请人</th><td>{$info['apply_user']}</td>
- </tr>
- <tr>
- <th>开始时间</th><td>{$info['start_time']}</td>
- </tr>
- <tr>
- <th>结束时间</th><td>{$info['end_time']}</td>
- </tr>
- <tr>
- <th>状态</th>
- {if condition="$info['status'] eq 0"}
- <td>审核中</td>
- {elseif condition="$info['status'] eq 1"}
- <td>同意</td>
- {elseif condition="$info['status'] eq 2"}
- <td>拒绝</td>
- {elseif condition="$info['status'] eq 3"}
- <td>取消</td>
- {/if}
- </tr>
- <tr>
- <th>参会人数</th><td>{$info['nums']}</td>
- </tr>
- <tr>
- <th>参会人员</th><td>{$info['user_name']}</td>
- </tr>
- <tr>
- <th>设备</th><td>{$info['meeting_devices']}</td>
- </tr>
- <tr>
- <th>会议内容</th><td>{$info['theme']}</td>
- </tr>
- {if ($info['status'] == 1 && $info['status'] == 2) }
- <tr>
- <th>审批人</th><td>{$info['approver_user']}</td>
- </tr>
- <tr>
- <th>审批意见</th><td>{$info['apply_remark']}</td>
- </tr>
- <tr>
- <th>审批日期</th><td>{$info['apply_time']}</td>
- </tr>
- {/if}
- {if ($info['status'] == 3)}
- <tr>
- <th>取消日期</th><td>{$info['cancel_time']}</td>
- </tr>
- {/if}
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- {/block}
|