Authored by 郭成尧

shop-fav

... ... @@ -2,7 +2,7 @@
* @Author: Targaryen
* @Date: 2017-03-23 11:31:51
* @Last Modified by: Targaryen
* @Last Modified time: 2017-03-31 11:49:21
* @Last Modified time: 2017-03-31 17:50:46
*/
/** *****************
... ... @@ -16,6 +16,28 @@ let $collect = $('#collect');
const shopId = $('#shopId').val();
/**
* 异步检测是否已经收藏
*/
$.ajax({
type: 'GET',
url: location.protocol + '//m.yohobuy.com/product/index/shopFav',
xhrFields: {
withCredentials: true
},
data: {
shopId: shopId
},
success: function(data) {
if (data.collect) {
$collect.attr('class', 'already-collect');
}
},
error: function() {
tip.show('网络断开连接了~');
}
});
/**
* 异步加载人气单品
*/
$.each($goodsContainer, function(index, elem) {
... ...
... ... @@ -11,55 +11,6 @@
clear: both;
}
.shop-info {
position: relative;
padding-right: 30px;
padding-left: 30px;
height: 234px;
.logo {
position: absolute;
width: 120px;
height: 120px;
box-shadow: 0 0 2px 1px #dedede;
}
.shopname {
font-size: 32px;
color: #444;
margin-left: 180px;
}
.favs-btn {
margin-left: 30px;
&.like {
color: #e33333;
}
}
}
.shop-intro {
font-size: 28px;
color: #444;
.hide {
display: none;
}
.active {
display: block;
}
}
.shop-intro-folder {
margin-top: 26px;
margin-bottom: 24px;
text-align: center;
font-size: 18px;
line-height: 1;
}
.branner-top {
width: 100%;
height: 234px;
... ... @@ -92,16 +43,18 @@
.fav-box {
position: absolute;
bottom: 30px;
bottom: 20px;
right: 30px;
border-radius: 10px;
text-align: center;
background-size: contain;
color: #fff;
font-size: 28px;
.favs {
line-height: 48px;
margin-right: 16px;
padding-top: 4px;
}
}
... ...