提交 3ede56f9 编写于 作者: D devil_gong

前端展示友情链接

上级 2e375c4a
......@@ -17,6 +17,7 @@ use app\service\BuyService;
use app\service\MessageService;
use app\service\SearchService;
use app\service\ConfigService;
use app\service\LinkService;
/**
* 前端公共控制器
......@@ -205,6 +206,10 @@ class Common extends Controller
// 商城公告
$this->assign('common_shop_notice', MyC('common_shop_notice'));
// 友情链接
$link = LinkService::LinkShowList();
$this->assign('link_list', $link['data']);
}
/**
......
<!-- 友情链接 -->
{{if !empty($link_list)}}
<div class="friendship-list">
<div class="am-container">
<h2>友情链接</h2>
<ul>
{{foreach $link_list as $v}}
<li>
<a href="{{$v.url}}" {{if $v['is_new_window_open'] eq 1}} target="_blank"{{/if}} title="{{$v.describe}}">{{$v.name}}</a>
</li>
{{/foreach}}
</ul>
</div>
</div>
{{/if}}
<!-- 底部导航 -->
<footer data-am-widget="footer" class="am-footer am-footer-default" data-am-footer="{}">
<div class="footer-nav-list">
{{foreach $nav_footer as $k=>$v}}
......@@ -10,6 +27,8 @@
<div class="am-footer-miscs">
<p><a href="http://shopxo.net/" title="ShopXO电商系统" target="_blank" class="">ShopXO</a> 提供技术支持</p>
<p>CopyRight©2016-{{:date('Y')}} ShopXO {{$Think.APPLICATION_VERSION}} Inc.</p>
<p>{{:MyC('home_site_icp')}}</p>
<p>
<a href="http://www.miitbeian.gov.cn/" target="_blank">{{:MyC('home_site_icp')}}</a>
</p>
</div>
</footer>
\ No newline at end of file
......@@ -22,6 +22,21 @@ use app\service\GoodsService;
*/
class LinkService
{
/**
* 前端展示
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-09-29
* @desc description
* @param [array] $params [输入参数]
*/
public static function LinkShowList($params = [])
{
$data = Db::name('Link')->where(['is_enable'=>1])->order('sort asc')->select();
return DataReturn('处理成功', 0, $data);
}
/**
* 列表
* @author Devil
......
......@@ -447,6 +447,40 @@ background:url(../images/ibar_sprites.png) no-repeat;background-position:0px -23
.am-footer-default .am-footer-divider {
padding: 0 5px;
}
.am-footer-default .am-footer-miscs a {
color: #8e8e8e;
}
/**
* 友情链接
*/
.friendship-list {
margin-top: 20px;
margin-bottom: 10px;
}
.friendship-list h2 {
border-bottom: 1px solid #e3e0e0;
line-height: 26px;
color: #333;
font-weight: 500;
font-size: 14px;
}
.friendship-list ul {
overflow: hidden;
}
.friendship-list ul li {
float: left;
line-height: 26px;
text-align: center;
}
.friendship-list ul li:not(:last-child) {
margin-right: 10px;
}
.friendship-list ul li:not(:last-child) a {
border-right: 1px solid #d4d4d4;
padding-right: 10px;
}
/**
......@@ -458,6 +492,9 @@ background:url(../images/ibar_sprites.png) no-repeat;background-position:0px -23
padding-left: 0px;
padding-right: 0px;
}
.friendship-list {
padding: 0 5px;
}
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册