You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
974 B
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{extend name="layout" /}
{block name="page-header"}{/block}
{block name="content"}
{notempty name="default_pass"}
<div class="alert alert-danger alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<h3 class="font-w300 push-15">安全提示</h3>
<p>超级管理员默认密码未修改,建议马上 <a class="alert-link link-effect" href="{:url('user/index/edit', ['id' => 1])}">修改</a></p>
</div>
{/notempty}
{// 后台首页钩子}
<div class="row">
{:hook('admin_index')}
</div>
{/block}
{block name="script"}
<script>
$(document).ready(function () {
$.ajax({
url: '{:url("checkUpdate")}',
type: 'GET'
}).done(function(data) {
$('#product-auth').html(data.auth);
$('#product-update').html($('#product-update').text() + ' ' + data.update);
});
});
</script>
{/block}