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
姜枫
9 years ago
Commit
1ea3422567c3030d2227b13857a59908f1a7c3b1
1 parent
abed452e
master
...
develop
feature/catch
feature/docker
feature/login-msg
feature/login-ua-ip
feature/removCamel
feature/safe-bug
feature/sessionKey
feature/setting
feature/vip
feature/webpack2
feature/wsl5.3
gray
release/2.0
release/fontBack2.0
handle merge
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
11 deletions
apps/brand/controllers/brand.js
apps/brand/models/brand.js
apps/editorial/models/editorial.js
apps/brand/controllers/brand.js
View file @
1ea3422
...
...
@@ -16,14 +16,14 @@ const index = (req, res, next) => {
let
channel
=
req
.
cookies
.
_Channel
||
'men'
;
let
contentCode
=
''
;
if
(
channel
===
'women'
)
{
if
(
channel
===
'women'
)
{
contentCode
=
'527079e6c46d0f125eb46b835968971b'
;
}
else
if
(
channel
===
'lifestyle'
){
}
else
if
(
channel
===
'lifestyle'
)
{
contentCode
=
'94b5ed607b6d565ffc29c2c04be121dc'
;
}
else
{
contentCode
=
'81886aaa5e82e3741bc1ba1e04ec7706'
;
}
let
appType
=
1
;
brand
.
getListData
(
contentCode
,
channel
,
appType
).
then
((
result
)
=>
{
...
...
apps/brand/models/brand.js
View file @
1ea3422
...
...
@@ -27,7 +27,7 @@ const _processListData = (list) => {
let
listKey
=
[];
_
.
forEach
(
list
.
data
.
allList
,
function
(
value
,
index
)
{
_
.
forEach
(
value
,
function
(
data
)
{
data
.
brandDomain
=
`
$
{
config
.
siteUrl
}
/product/
shop
/
$
{
data
.
brandDomain
}
`
;
});
...
...
@@ -35,20 +35,20 @@ const _processListData = (list) => {
if
(
index
===
'0~9'
)
{
index
=
'0-9'
;
}
else
{
listKey
.
push
(
index
)
listKey
.
push
(
index
)
;
}
});
listKey
.
sort
();
listKey
.
push
(
'0-9'
);
_
.
forEach
(
listKey
,
function
(
key
)
{
listData
.
push
({
key
:
key
,
brands
:
list
.
data
.
allList
[
key
]
});
});
});
return
listData
;
};
...
...
apps/editorial/models/editorial.js
View file @
1ea3422
...
...
@@ -73,6 +73,7 @@ const _processListData = (list) => {
});
listData
.
tabs
=
list
.
list
.
artList
;
// console.log(listData)
return
listData
;
...
...
@@ -276,7 +277,8 @@ const _getRelatedData = () => {
if
(
result
&&
result
.
code
===
200
)
{
_
.
forEach
(
result
.
data
.
product_list
,
function
(
data
)
{
console
.
log
(
data
.
product_name
)
console
.
log
(
data
.
product_name
);
// productList.push({
// name: data.product_name,
// price: data.sales_price,
...
...
@@ -285,7 +287,7 @@ const _getRelatedData = () => {
// });
});
console
.
log
(
productList
)
console
.
log
(
productList
)
;
return
productList
;
}
else
{
logger
.
error
(
'推荐商品 cood 不是 200'
);
...
...
@@ -335,11 +337,13 @@ const _processContentData = (list) => {
_
.
forEach
(
value
.
goods
.
data
,
function
(
data
)
{
idList
+=
data
.
id
+
','
;
// idList = '51152761';
formatData
.
push
(
data
);
});
}
//console.log(idList)
// console.log(idList)
if
(
value
.
goodsGroup
)
{
...
...
@@ -354,10 +358,11 @@ const _processContentData = (list) => {
// });
}
});
// console.log(idList)
_getRelatedData
().
then
((
result
)
=>
{
//console.log(result)
//
console.log(result)
_
.
forEach
(
formatData
,
function
(
data
,
index
)
{
// console.log(formatData)
...
...
Please
register
or
login
to post a comment