...
|
...
|
@@ -322,8 +322,8 @@ const _processContentData = (list) => { |
|
|
if (related.relatedReco) {
|
|
|
_.forEach(related.relatedReco, function(data, key) {
|
|
|
|
|
|
_.forEach(result, function(list, index) {
|
|
|
if(data.id === list.productSkn) {
|
|
|
_.forEach(result, function(lis, index) {
|
|
|
if (data.id === lis.productSkn) {
|
|
|
data = _.assign(data, {
|
|
|
link: config.siteUrl + '/product/list/pro_' +
|
|
|
result[index].productId + '_' + data.productSkc + '/' +
|
...
|
...
|
@@ -343,8 +343,8 @@ const _processContentData = (list) => { |
|
|
if (related.relatedGroup) {
|
|
|
_.forEach(related.relatedGroup, function(data, key) {
|
|
|
|
|
|
_.forEach(result, function(list, index) {
|
|
|
if(data.id === list.productSkn) {
|
|
|
_.forEach(result, function(lis, index) {
|
|
|
if (data.id === lis.productSkn) {
|
|
|
data = _.assign(data, {
|
|
|
link: config.siteUrl + '/product/list/pro_' +
|
|
|
result[index].productId + '_' + data.productSkc + '/' +
|
...
|
...
|
|