调整基础模板结构

This commit is contained in:
邹景立 2017-02-15 16:35:35 +08:00
parent ef352ff83b
commit 31bdca4f7f

View File

@ -3,7 +3,13 @@
{block name="content"}
<div class="row">
<div class="col-sm-6">
<table class="table table-bordered">
<table class="layui-table" lay-even lay-skin="nob">
<thead>
<tr>
<th class="text-center" colspan="2">系统信息</th>
</tr>
</thead>
<tbody>
<tr>
<td>框架版本</td>
<td>{$Think.const.THINK_VERSION}</td>
@ -32,38 +38,46 @@
<td>POST限制</td>
<td>{:ini_get('post_max_size')}</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-6">
<table class="table table-bordered">
<table class="layui-table" lay-even lay-skin="nob">
<thead>
<tr>
<td>框架版本</td>
<td>{$Think.const.THINK_VERSION}</td>
<th class="text-center" colspan="2">产品团队</th>
</tr>
</thead>
<tbody>
<tr>
<td>产品名称</td>
<td>Think.Admin</td>
</tr>
<tr>
<td>系统类型</td>
<td>{:php_uname('s')}</td>
<td>产品设计及研发团队</td>
<td>广州楚才信息科技有限公司</td>
</tr>
<tr>
<td>运行环境</td>
<td>{:php_sapi_name()}</td>
<td>官方网址</td>
<td>https://think.ctolog.com</td>
</tr>
<tr>
<td>PHP版本</td>
<td>{:phpversion()}</td>
<td>官方QQ群</td>
<td><a href="http://shang.qq.com/wpa/qunwpa?idkey=ae25cf789dafbef62e50a980ffc31242f150bc61a61164458216dd98c411832a"><img src="http://pub.idqqimg.com/wpa/images/group.png" alt="PHP微信开发群 (SDK)"></a></td>
</tr>
<tr>
<td>MySQL版本</td>
<td>{$mysql_ver}</td>
<td>BUG反馈</td>
<td>https://github.com/zoujingli/Think.Admin/issues</td>
</tr>
<tr>
<td>上传限制</td>
<td>联系我们</td>
<td>{:ini_get('upload_max_filesize')}</td>
</tr>
<tr>
<td>POST限制</td>
<td>{:ini_get('post_max_size')}</td>
<td>项目地址</td>
<td>https://github.com/zoujingli/Think.Admin</td>
</tr>
</tbody>
</table>
</div>
</div>