Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-blk
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
1
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
zhangxiaoru
9 years ago
Commit
3ddc0aaaf184edd908de98d34a985b251069f263
1 parent
7c8029e6
me
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
3 deletions
apps/editorial/models/editorial.js
apps/me/views/partial/collection.hbs
apps/me/views/partial/collection/brand.hbs
apps/me/views/partial/collection/editorial.hbs
config/common.js
public/scss/me/favorite/_brand.css
public/scss/me/favorite/_editorial.css
apps/editorial/models/editorial.js
View file @
3ddc0aa
...
...
@@ -36,6 +36,7 @@ const _processListData = (list) => {
});
_
.
forEach
(
list
.
list
.
artList
,
(
data
)
=>
{
// console.log(data)
if
(
data
.
author
)
{
listData
=
_
.
assign
(
listData
,
{
...
...
apps/me/views/partial/collection.hbs
View file @
3ddc0aa
...
...
@@ -7,7 +7,7 @@
<a
href=
"/me/collection"
><span
class=
"badge"
></span>
商品收藏
</a>
</li>
<li
class=
"
{{#if
brand
}}
active
{{/if}}
"
>
<a
href=
"/me/collection/brand"
><span
class=
"badge"
></span>
店铺
收藏
</a>
<a
href=
"/me/collection/brand"
><span
class=
"badge"
></span>
品牌
收藏
</a>
</li>
<li
class=
"
{{#if
editorial
}}
active
{{/if}}
"
>
<a
href=
"/me/collection/editorial"
><span
class=
"badge"
></span>
资讯收藏
</a>
...
...
apps/me/views/partial/collection/brand.hbs
View file @
3ddc0aa
{{#
data
}}
{{#if
total
}}
<div
class=
"favorite-brands"
>
<span
class=
"num"
>
您共收藏了
{{
total
}}
个品牌
</span>
<div
class=
"brands-list clearfix"
>
{{#
each
brandList
}}
<div
class=
"brand-raw clearfix"
>
...
...
apps/me/views/partial/collection/editorial.hbs
View file @
3ddc0aa
...
...
@@ -2,6 +2,7 @@
{{#if
total
}}
<div
class=
"favorite-editorials"
>
<span
class=
"num"
>
您共收藏了
{{
total
}}
篇文章
</span>
<div
class=
"editorial-list clearfix"
>
{{#
each
editorialList
}}
<div
class=
"editorial-raw clearfix"
data-id=
"
{{
id
}}
"
>
...
...
config/common.js
View file @
3ddc0aa
...
...
@@ -22,8 +22,8 @@ module.exports = {
},
cookieDomain
:
'yohoblk.com'
,
domains
:
{
api
:
'http://dev-api.yohops.com:9999/'
,
// devapi.yoho.cn:58078 testapi.yoho.cn:28078 devapi.yoho.cn:58078
service
:
'http://dev-service.yohops.com:9999/'
,
// testservice.yoho.cn:28077 devservice.yoho.cn:58077
api
:
'http://testapi.yoho.cn:28078/'
,
// devapi.yoho.cn:58078 testapi.yoho.cn:28078 devapi.yoho.cn:58078
service
:
'http://testservice.yoho.cn:28077/'
,
// testservice.yoho.cn:28077 devservice.yoho.cn:58077
search
:
'http://192.168.102.216:8080/yohosearch/'
},
useOneapm
:
false
,
...
...
public/scss/me/favorite/_brand.css
View file @
3ddc0aa
.favorite-brands
{
position
:
relative
;
.num
{
position
:
absolute
;
top
:
-30px
;
left
:
600px
;
font-size
:
16px
;
color
:
#666
;
}
.brand-raw
>
div
{
float
:
left
;
...
...
public/scss/me/favorite/_editorial.css
View file @
3ddc0aa
.favorite-editorials
{
position
:
relative
;
.num
{
position
:
absolute
;
top
:
-30px
;
left
:
600px
;
font-size
:
16px
;
color
:
#666
;
}
.editorial-raw
>
div
{
float
:
left
;
...
...
Please
register
or
login
to post a comment