Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-community-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
htoooth
6 years ago
Commit
6a039669d4303c715062f98b73337d6ea90715ca
1 parent
46e0b0e9
fix error
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
apps/store/article/guangProcess.js
apps/store/article/guangProcess.js
View file @
6a03966
...
...
@@ -160,18 +160,18 @@ export function processArticleDetail(articleContent) {
// 普通商品
forEach
(
goodsData
,
(
item
)
=>
{
allgoods
.
push
(
item
.
productI
d
);
allgoods
.
push
(
item
.
i
d
);
});
// 全球购商品
forEach
(
goodsDataGlobal
,
(
item
)
=>
{
allgoods
.
push
(
item
.
productI
d
);
allgoods
.
push
(
item
.
i
d
);
goodsData
.
push
(
item
);
});
// 限定商品
forEach
(
goodsDataLimit
,
(
item
)
=>
{
allgoods
.
push
(
item
.
productI
d
);
allgoods
.
push
(
item
.
i
d
);
goodsData
.
push
(
item
);
});
...
...
Please
register
or
login
to post a comment