mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-02-27 18:00:26 +00:00
77 lines
3.2 KiB
HTML
77 lines
3.2 KiB
HTML
{extend name="base"/}
|
|
{block name="resources"}
|
|
<style>
|
|
.install-content-procedure .content-procedure-item:first-of-type{
|
|
background: url("INSTALL_IMG/complete_two.png") no-repeat center / contain;
|
|
color: #fff;
|
|
}
|
|
.install-content-procedure .content-procedure-item:nth-child(2), .install-content-procedure .content-procedure-item:nth-child(3){
|
|
background: url("INSTALL_IMG/complete_four.png") no-repeat center / contain;
|
|
color: #fff;
|
|
}
|
|
.install-content-procedure .content-procedure-item:nth-child(4){
|
|
background: url("INSTALL_IMG/complete_three.png") no-repeat center / contain;
|
|
color: #fff;
|
|
}
|
|
.install-content-procedure{border: none;}
|
|
</style>
|
|
{/block}
|
|
{block name="main"}
|
|
<div class="install-success">
|
|
<div class="install-success-box">
|
|
<div class="success-img">
|
|
<img class="install-success-pic" src="INSTALL_IMG/success_img.jpg" alt="">
|
|
</div>
|
|
<div class="install-success-text">
|
|
{if $is_build == 1}
|
|
<p class="install-success-title">恭喜您!已成功安装{$install_config.website_name}。</p>
|
|
{/if}
|
|
{if $is_build == 0}
|
|
<p class="install-success-title">安装过程已结束,您还需要手动编译,才能正常使用! </p>
|
|
<p class="install-success-desc">如何手动编译请参考如下链接 <a href="{$install_config.build_manual}" target="_blank">{$install_config.build_manual}</a></p>
|
|
{/if}
|
|
<p class="install-success-desc">建议删除安装目录install后使用</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="other-links">
|
|
<div class="back">
|
|
<p class="other-links-title">您现在可以访问:</p>
|
|
<ul class="other-links-list">
|
|
<li class="other-links-item" onclick="window.open('{$root_url}/admin/login')">
|
|
<div class="other-links-pic">
|
|
<img src="INSTALL_IMG/web.jpg" alt="">
|
|
</div>
|
|
<a href="javascript:void(0)" class="other-links-text" >网站后台</a>
|
|
</li>
|
|
<li class="other-links-item" onclick="window.open('{$root_url}/web/')">
|
|
<div class="other-links-pic">
|
|
<img src="INSTALL_IMG/site_web.png" alt="">
|
|
</div>
|
|
<a href="javascript:void(0)" class="other-links-text" >网站电脑端</a>
|
|
</li>
|
|
<li class="other-links-item" onclick="window.open('{$root_url}/wap/')">
|
|
<div class="other-links-pic">
|
|
<img src="INSTALL_IMG/site_h5.png" alt="">
|
|
</div>
|
|
<a href="javascript:void(0)" class="other-links-text" >网站手机端</a>
|
|
</li>
|
|
{notempty name="$install_config['website_url']"}
|
|
<li class="other-links-item" onclick="window.open('{$install_config.website_url}')">
|
|
<div class="other-links-pic">
|
|
<img src="INSTALL_IMG/admin.jpg" alt="">
|
|
</div>
|
|
<a href="javascript:void(0)" class="other-links-text" >{$install_config.website_name}官方网站</a>
|
|
</li>
|
|
{/notempty}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
|
|
{block name="script"}
|
|
<script>
|
|
ControlContent(4);
|
|
</script>
|
|
{/block}
|