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
c2daf7377f6b514ce744ce87cf877587ca7928ff
1 parent
f09d6f26
brand
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
apps/brand/controllers/brand.js
apps/brand/models/brand.js
apps/brand/controllers/brand.js
View file @
c2daf73
...
...
@@ -21,8 +21,9 @@ const brand = require('../models/brand');
const
index
=
(
req
,
res
,
next
)
=>
{
let
channel
=
req
.
query
.
brand
||
1
;
let
contentCode
=
'd0149783b8dd2adaf083fd10556c39a9'
;
let
appType
=
1
;
brand
.
getListData
(
contentCode
,
channel
).
then
((
result
)
=>
{
brand
.
getListData
(
contentCode
,
channel
,
appType
).
then
((
result
)
=>
{
res
.
display
(
'index'
,
{
module
:
'brand'
,
page
:
'index'
,
...
...
apps/brand/models/brand.js
View file @
c2daf73
...
...
@@ -42,6 +42,7 @@ const _processListData = (list) => {
}
);
});
console
.
log
(
listData
)
return
listData
;
};
...
...
@@ -96,9 +97,10 @@ const _getResources = (contentCode) => {
* @param channel
* @returns {*}
*/
const
_getBreakingSort
=
(
channel
)
=>
{
const
_getBreakingSort
=
(
channel
,
appType
)
=>
{
return
api
.
get
(
''
,
{
yo_channel
:
channel
,
yh_channel
:
channel
,
app_type
:
appType
,
method
:
'app.brand.newBrandList'
}).
then
((
result
)
=>
{
if
(
result
&&
result
.
code
===
200
)
{
...
...
@@ -114,8 +116,8 @@ const _getBreakingSort = (channel) => {
* 获取品牌一览相关数据
* @returns {*}
*/
const
getListData
=
(
contentCode
,
channel
)
=>
{
return
Promise
.
all
([
_getResources
(
contentCode
),
_getBreakingSort
(
channel
)])
const
getListData
=
(
contentCode
,
channel
,
appType
)
=>
{
return
Promise
.
all
([
_getResources
(
contentCode
),
_getBreakingSort
(
channel
,
appType
)])
.
then
((
result
)
=>
{
return
{
...
...
Please
register
or
login
to post a comment