|
@@ -426,7 +426,7 @@ function handleNoticeInfo() {
|
|
|
const artInfo = marketGroupLstDict[artId];
|
|
const artInfo = marketGroupLstDict[artId];
|
|
|
const groupName = artInfo.groupName;
|
|
const groupName = artInfo.groupName;
|
|
|
const artInfoA = {
|
|
const artInfoA = {
|
|
|
- sortId: arguments.sortId,
|
|
|
|
|
|
|
+ sortId: artInfo.sortId,
|
|
|
hash_id: artInfo.artId,
|
|
hash_id: artInfo.artId,
|
|
|
id: tempId,
|
|
id: tempId,
|
|
|
image: artInfo.image,
|
|
image: artInfo.image,
|
|
@@ -440,7 +440,7 @@ function handleNoticeInfo() {
|
|
|
baseLstDict[groupName].push(artInfoA);
|
|
baseLstDict[groupName].push(artInfoA);
|
|
|
tempId += 1;
|
|
tempId += 1;
|
|
|
const artInfoB = {
|
|
const artInfoB = {
|
|
|
- sortId: arguments.sortId,
|
|
|
|
|
|
|
+ sortId: artInfo.sortId,
|
|
|
jumpType: "",
|
|
jumpType: "",
|
|
|
url: "",
|
|
url: "",
|
|
|
timeList: [],
|
|
timeList: [],
|
|
@@ -471,7 +471,6 @@ function handleNoticeInfo() {
|
|
|
let baseList = baseLstDict[albumName] || [];
|
|
let baseList = baseLstDict[albumName] || [];
|
|
|
let relationList = relationLstDict[albumName] || [];
|
|
let relationList = relationLstDict[albumName] || [];
|
|
|
baseList.sort((a, b) => a.sortId - b.sortId);
|
|
baseList.sort((a, b) => a.sortId - b.sortId);
|
|
|
- magicJS.logger.info(JSON.stringify(baseList));
|
|
|
|
|
relationList.sort((a, b) => a.sortId - b.sortId);
|
|
relationList.sort((a, b) => a.sortId - b.sortId);
|
|
|
relationAllList = relationAllList.concat(relationList);
|
|
relationAllList = relationAllList.concat(relationList);
|
|
|
for (let i = 0; i < baseList.length; ++i) {
|
|
for (let i = 0; i < baseList.length; ++i) {
|