thinkphp-wechat/application/admin/view/index/index.html
Wenbin.Wang d49c9fde59 代码
2021-12-24 16:40:05 +08:00

31 lines
974 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{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}