| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 | {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>{$meta_title}</h5>-->                <!--<div class="ibox-tools">-->                    <!--<a class="toback" href="javascript:;" onclick="window.history.back()">-->                        <!--返回上一页-->                    <!--</a>-->                <!--</div>-->            <!--</div>-->            <div class="ibox-content">                <table class="table table-bordered">                    <tbody>                    <tr>                        <th style="width:120px ">编号</th><td>{$info['id']}</td>                    </tr>                    <tr>                        <th>任务地点名称</th><td>{$info['daily_name']}</td>                    </tr>                    <tr>                        <th>任务详情</th><td>{$info['daily_details']}</td>                    </tr>                    <tr>                        <th>工作人员</th><td>{$info['user_name']}</td>                    </tr>                    {if $info['zg_type'] >0}                    <tr>                        <th>整改状态</th><td>                        {if $info['zg_type']==1}整改中{/if}                        {if $info['zg_type']==2}已完成{/if}                    </td>                    </tr>                    {/if}                    <tr>                        <th>时间</th><td>{$info['create_time']}</td>                    </tr>                    <tr>                        <th>工作表单</th><td>                        <table class="table table-bordered">                            <thead>                            <tr>                                <th>序号</th>                                <th>内容</th>                                <th>完成</th>                            </tr>                            </thead>                            <tbody>                            {foreach $info['check_json'] as $k=>$v}                            <tr>                                <td>{$k+1}</td>                                <td>{$v['title']}</td>                                {if ($v['result']  == 1)}                                <td><input type="checkbox" checked disabled></td>                                {else}                                <td><input type="checkbox"  disabled></td>                                {/if}                            </tr>                            {/foreach}                            </tbody>                        </table>                    </td>                    </tr>                    <tr>                        <th>内容</th><td>{$info['content']}</td>                    </tr>                    <tr>                        <th>图片</th><td>                        {foreach $info['images'] as $k=>$v}                        <img src="{$v}" alt="" onclick="open_img(this)" style="width: 80px;height: 60px;"  >                        {/foreach}                    </td>                    </tr>                    </tbody>                </table>            </div>        </div>    </div></div>{/block}
 |