支付:修复支付测试bug
This commit is contained in:
@@ -23,7 +23,6 @@ export const REF_CIRCLE_MAIL_TIME = 6; // 统一一天刷新定期邮件时间
|
||||
export const PUSH_BATCH = 100; // 推送分批人数
|
||||
export const PUSH_INTERVAL = 5 * 1000; // 分批时间,5秒一批
|
||||
|
||||
|
||||
export enum TIME_OUTPUT_TYPE {
|
||||
DATE = 1,
|
||||
STAMP_10 = 2,
|
||||
@@ -1117,4 +1116,6 @@ export enum GuideUnloadNum {
|
||||
// 功能开启id,写死
|
||||
export enum SYSTEM_OPEN_ID {
|
||||
EXPEDITION = 36, // 远征
|
||||
}
|
||||
}
|
||||
|
||||
export const DEBUG_PRICE = 0.01;
|
||||
@@ -423,15 +423,15 @@ export class TreasureHuntData extends ActivityBase {
|
||||
arr.forEach(data => {
|
||||
switch(data.index) {
|
||||
case 1:
|
||||
this.firstPage = new TreasureHuntFirstPageData(data); break;
|
||||
this.firstPage = new TreasureHuntFirstPageData(<TreasureHuntFirstPageInDb>data); break;
|
||||
case 2:
|
||||
this.shop = new TreasureHuntShopData(data); break;
|
||||
this.shop = new TreasureHuntShopData(<TreasureHuntShopInDb>data); break;
|
||||
case 3:
|
||||
this.tasks = new TreasureHuntTaskData(data); break;
|
||||
this.tasks = new TreasureHuntTaskData(<TreasureHuntTaskInDb>data); break;
|
||||
case 4:
|
||||
this.challenge = new TreasureHuntChallengeData(data); break;
|
||||
this.challenge = new TreasureHuntChallengeData(<TreasureHuntChallengeInDb>data); break;
|
||||
case 5:
|
||||
this.treasureShop = new TreasureHuntTreasureShopData(data); break;
|
||||
this.treasureShop = new TreasureHuntTreasureShopData(<TreasureHuntTreasureShopInDb>data); break;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user