|
|
@@ -509,7 +509,7 @@ function handleFirstArtList() {
|
|
|
"attachFileType": 1,
|
|
|
"artId": "3oe8bev8",
|
|
|
"nickname": "无边星链",
|
|
|
- "status": "-1"
|
|
|
+ "status": "1"
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
@@ -603,6 +603,25 @@ function handleFirstArtInfo() {
|
|
|
"fail": false
|
|
|
}
|
|
|
*/
|
|
|
+ let artInfo = rspData.data.artInfo;
|
|
|
+ let authorInfo = rspData.data.authorInfo;
|
|
|
+ let payInfo = rspData.data.payInfo;
|
|
|
+
|
|
|
+ artInfo.status = 1;
|
|
|
+ // 批量强开
|
|
|
+ if (payInfo.enableConsignment == 0) {
|
|
|
+ payInfo.enableConsignment = 1;
|
|
|
+ magicJS.logger.info(`强制开启批量购买功能`);
|
|
|
+ }
|
|
|
+ if (payInfo.limited < 1) {
|
|
|
+ // 限量强开
|
|
|
+ payInfo.limited = 1;
|
|
|
+ magicJS.logger.info(`强制开启购买数量限制`);
|
|
|
+ }
|
|
|
+ if (payInfo.refreshTime == 0) {
|
|
|
+ payInfo.refreshTime = Math.floor(Date.now() / 1000);
|
|
|
+ }
|
|
|
+ gRetBody = rspData;
|
|
|
}
|
|
|
|
|
|
function handleCreateFirstOrder() {
|