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
a02031a992526124bfdc63cf076d8efbde7f234d
1 parent
e3b59e3f
editorial
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
32 deletions
apps/brand/controllers/brand.js
apps/editorial/models/editorial.js
public/js/editorial/detail.page.js
apps/brand/controllers/brand.js
View file @
a02031a
...
...
@@ -48,5 +48,5 @@ const index = (req, res, next) => {
};
module
.
exports
=
{
index
//
组件demo页
index
//
品牌一览
};
...
...
apps/editorial/models/editorial.js
View file @
a02031a
...
...
@@ -11,6 +11,7 @@ const camelCase = global.yoho.camelCase;
const
_
=
require
(
'lodash'
);
const
Promise
=
require
(
'bluebird'
);
const
co
=
Promise
.
coroutine
;
const
config
=
global
.
yoho
.
config
;
// const moment = require('moment');
const
logger
=
global
.
yoho
.
logger
;
...
...
@@ -383,6 +384,13 @@ const _getRelateBrand = (id) => {
article_id
:
id
}).
then
((
result
)
=>
{
if
(
result
&&
result
.
code
===
200
)
{
_
.
forEach
(
result
.
data
,
function
(
data
)
{
let
domain
=
data
.
url
;
domain
=
domain
.
substring
(
domain
.
indexOf
(
'/'
)
+
2
,
domain
.
indexOf
(
'.'
))
console
.
log
(
domain
)
data
.
url
=
`
$
{
config
.
siteUrl
}
/product/
shop
/
$
{
domain
}
`
;
});
return
camelCase
(
result
.
data
);
}
else
{
logger
.
error
(
'Related brand return code is not 200'
);
...
...
public/js/editorial/detail.page.js
View file @
a02031a
...
...
@@ -32,13 +32,13 @@ $('#prise-btn').click(function() {
}
if
(
$this
.
hasClass
(
'liked'
))
{
url
=
'/editorial/info/cancelPraise'
;
// 点赞
url
=
'/editorial/info/praise'
;
}
else
{
// 取消点赞
url
=
'/editorial/info/cancelP
raise'
;
url
=
'/editorial/info/p
raise'
;
}
prising
=
true
;
$
.
ajax
({
...
...
@@ -92,34 +92,6 @@ $('#collect-btn').click(function() {
}
else
{
new
_alert
(
data
.
message
).
show
();
}
// switch (data.code) {
// // case 401:
// // // 防止从已有col的页面再次进行跳转后出错的情况
// // if (/\?col=(1|0)/.test(location.href)) {
// // hrefUrl = location.href.replace(/\?col=(1|0)/, '?col=' + col);
// // } else {
// // hrefUrl = location.href + '?col=' + col;
// // }
// // location.href = '//www.yohobuy.com/signin.html?refer=' + encodeURI(hrefUrl);
// // break;
// case 400:
// new _alert(data.message).show();
// break;
// case 200:
// if (/\?col=(1|0)/.test(location.href)) {
// // 如果页面url中含有col,为了防止页面刷新时收藏或者取消收藏会根据col来的问题,进行页面跳转拿掉参数
// location.href = location.href.replace(/\?col=(1|0)/, '');
// } else {
// $this.toggleClass('collected');
// }
// break;
// default:
// break;
// }
collecting
=
false
;
});
}).
bind
(
'mouseenter mouseleave'
,
function
()
{
...
...
Please
register
or
login
to post a comment