| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | {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>                            {if condition="$info['group'] eq 1"}                            <td>全体</td>                            {elseif condition="$info['group'] eq 2"}                            <td>指定某人</td>                            {elseif condition="$info['group'] eq 3"}                            <td>指定角色</td>                            {/if}                        </tr>                        <tr>                            <th>通知类型</th><td>{$info['cate_name']}</td>                        </tr>                        <tr>                            <th>标题</th><td>{$info['title']}</td>                        </tr>                        <tr>                            <th>内容</th><td>{$info['content']}</td>                        </tr>                        <tr>                            <th>创建人</th><td>{$info['create_user']}</td>                        </tr>                        <tr>                            <th>创建时间</th><td>{$info['create_time']}</td>                        </tr>                        </tbody>                    </table>                </div>            </div>        </div>    </div></div>{/block}
 |