修复首页报错

master
hanbo 2021-11-05 09:35:52 +08:00
parent c9162a1484
commit 8ee5c1fe64
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
<#assign base=request.contextPath />
<#import "../common/defaultLayout.ftl" as defaultLayout>
<@defaultLayout.layout>
<style>
.am-icon-btn{
padding-top: 12px;
}
</style>
<div class="admin-content">
<div class="am-cf am-padding">
<div class="am-fl am-cf"><strong class="am-text-primary am-text-lg">首页</strong> / <small>管理中心</small></div>
</div>
<div class="am-g">
<div class="am-u-sm-12">
<table class="am-table">
<tbody>
<tr>
<td class="am-primary" >用户名称:&nbsp;&nbsp;<span style="color:#5eb95e">${Session["realsName"]!""}</span></td>
<td class="am-primary">上次登录时间:&nbsp;&nbsp;<span style="color:#5eb95e">${Session["lastLoginTime"]!""}</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<script type="text/javascript">
$(function(){
})
</script>
</@defaultLayout.layout>