| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 | {extend name="common/common2" /}{block name="main"}<style>    .custom-table th,td{        padding: 10px;    }    .custom-table th{        width: 120px;        text-align: right;    }    .text {        width: 200px;        display: inline-block;    }    .num {        margin-left: 20px;    }</style><div class="row">    <div class="col-sm-12">        <div class="ibox float-e-margins">            <div class="ibox-content">    <table class="table custom-table">        <tr>            <th>名称</th><td>{$info['title']}</td>        </tr>        <tr>            <th>失败数量</th><td>{$info['error']}</td>        </tr>        <tr>            <th>                导入类型            </th>            <td>                {$info['type']==1?'资源列表导入':($info['type']==2?'业主列表导入':'绑定车辆列表导入')}            </td>        </tr>        <tr>            <th>                状态            </th>            <td>                {$info['status']==0?'正常':'已撤回'}            </td>        </tr>        {if $info['status']==1}                <tr>        <th>撤回时间</th><td>{$info['withdraw_time']}</td>        </tr>          {/if}            <tr>        <th>时间</th><td>{$info['create_time']}</td>        </tr>        <tr>            <th>错误信息:</th><td></td>        </tr>    </table>    {if $info['msg']}            <table class="table table-bordered">    {foreach $info['msg'] as $k=>$v}    <tr>        <th></th><td>{$v}</td>    </tr>         {/foreach}    </table>    {/if}    </div>   </div>  </div></div>{/block}{block name="script"}{/block}
 |