123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- {extend name="common/common2" /}
- {block name="main"}
- <style>
- .custom-table th,td{
- padding: 10px;
- }
- .custom-table th{
- width: 120px;
- text-align: left;
- }
- </style>
- <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">
- <table class="table custom-table table-bordered">
- <tbody>
- <tr>
- <th>投诉人</th><td>{$info['realName']}</td>
- </tr>
- <tr>
- <th>时间</th><td>{$info['create_time']}</td>
- </tr>
- <tr>
- <th>部门</th><td>{$info['depName']}</td>
- </tr>
- <tr>
- <th>内容</th><td>{$info['content']}</td>
- </tr>
- <tr>
- <th>处理意见</th><td>{$info['note']}</td>
- </tr>
- {if !empty($info['voices'])}
- <tr>
- <th>语音</th><td><audio src="{$info['voices']}" controls></audio></td>
- </tr>
- {/if}
- {if !empty($info['images'])}
- <tr>
- <th>图片</th>
- <td>
- <p>
- {foreach $info['images'] as $key=>$val}
- <img onclick="open_img(this)" src="{$val}" width="60" height="60">
- {/foreach}
- </p>
- </td>
- </tr>
- {/if}
- {if !empty($info['videos'])}
- <tr>
- <th>视频</th>
- <td style="width: 200px!important;height: 200px;!important;">
- <video style="width: 200px!important;height: 200px;!important;" src="{$info['videos']}" controls="controls">
- </video>
- </td>
- </tr>
- {/if}
- <tr>
- <th>状态</th><td>{$info['statusTxt']}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- {/block}
- {block name="script"}
- {/block}
|