商店:rmb购买

This commit is contained in:
luying
2022-07-25 20:55:20 +08:00
parent 57283c6b20
commit 528a862d1c
9 changed files with 326 additions and 134 deletions

View File

@@ -414,6 +414,7 @@ export const STATUS = {
SKIN_HAS_NOT_HERO: { code: 30903, simStr: '未拥有该武将不可获得皮肤' },
HERO_NOT_MAX: { code: 30904, simStr: '该武将未升满星' },
LV_LIMIT: { code: 30905, simStr: '玩家等级不足' },
CAN_NOT_PURCHASE: { code: 30906, simStr: '该商品不可使用该购买方式' },
// 任务相关 31001-31100
TASK_NOT_REACH_CONDITION: { code: 31001, simStr: '任务不满足条件' },

View File

@@ -32,6 +32,9 @@ export default class UserShop extends BaseModel {
@prop({ required: true })
itemId: number; // 商品id
@prop({ required: true })
createTime: number; // 商品上新时间
@prop({ required: true })
goodId: number; // 商品包含的物品id
@@ -55,9 +58,9 @@ export default class UserShop extends BaseModel {
}
public static async findByShopType(roleId: string, shopId: number, typeId: number) {
public static async findByShopType(roleId: string, shop: number, type: number) {
let timeCondition = this.getRefreshCondition();
let rec: UserShopType[] = await UserShopModel.find({ shopId, typeId, roleId, $or: timeCondition }).lean();
let rec: UserShopType[] = await UserShopModel.find({ shop, type, roleId, $or: timeCondition }).lean();
return rec;
}
@@ -67,21 +70,21 @@ export default class UserShop extends BaseModel {
return rec;
}
public static async findByRoleAndItem(roleId: string, activityId: number, dicShopItem: { id: number, shop: number, type: number }) {
public static async findByRoleAndItem(roleId: string, activityId: number, dicShopItem: { id: number, shop: number, type: number, createTime?: number }) {
let timeCondition = this.getRefreshCondition();
let { id, shop, type } = dicShopItem;
let { id, shop, type, createTime = 0 } = dicShopItem;
let rec: UserShopType = await UserShopModel.findOne({ roleId, itemId: id, shop, type, activityId, $or: timeCondition }).lean();
let rec: UserShopType = await UserShopModel.findOne({ roleId, itemId: id, shop, type, activityId, createTime, $or: timeCondition }).lean();
return rec;
}
public static async purchase(roleId: string, roleName: string, activityId: number, dicShopItem: { id: number, goodId: number, refreshType: number, shop: number, type: number }, inc: number) {
public static async purchase(roleId: string, roleName: string, activityId: number, dicShopItem: { id: number, goodId: number, refreshType: number, shop: number, type: number, createTime?: number }, inc: number) {
let code = genCode(8);
let timeCondition = this.getRefreshCondition();
let { id, goodId, refreshType, shop, type } = dicShopItem;
let { id, goodId, refreshType, shop, type, createTime = 0 } = dicShopItem;
let rec: UserShopType = await UserShopModel.findOneAndUpdate(
{ roleId, itemId: id, $or: timeCondition, activityId, shop, type },
{ roleId, itemId: id, $or: timeCondition, activityId, shop, type, createTime },
{ $setOnInsert: { roleName, code, goodId, refreshType }, $inc: { count: inc } },
{ new: true, upsert: true }
).lean();

43
shared/db/UserShopType.ts Normal file
View File

@@ -0,0 +1,43 @@
import BaseModel from './BaseModel';
import { index, getModelForClass, prop, DocumentType, modelOptions } from '@typegoose/typegoose';
import { nowSeconds } from '../pubUtils/timeUtil';
/**
* 玩家购买商店记录表,每个商品一条,每次刷新新建一条
**/
@modelOptions({ schemaOptions: { id: false } })
@index({ roleId: 1, shop: 1, type: 1 })
export default class UserShopType extends BaseModel {
@prop({ required: true })
roleId: string; // 玩家id
@prop({ required: true })
shop: number; // 商店id
@prop({ required: true })
type: number; // 商店页签id
@prop({ required: true })
readTime: number;
public static async findByRoleId(roleId: string) {
let rec: UserShopTypeType[] = await UserShopTypeModel.find({ roleId }).lean();
return rec;
}
public static async findByType(roleId: string, shop: number, type: number) {
let rec: UserShopTypeType = await UserShopTypeModel.findOne({ roleId, shop, type }).lean();
return rec;
}
public static async read(roleId: string, shop: number, type: number) {
let rec: UserShopTypeType[] = await UserShopTypeModel.findOneAndUpdate({ roleId, shop, type }, { $set: {readTime: nowSeconds()} }, { new: true, upsert: true }).lean();
return rec;
}
}
export const UserShopTypeModel = getModelForClass(UserShopType);
export interface UserShopTypeType extends Pick<DocumentType<UserShopType>, keyof UserShopType> { }
export type UserShopTypeParam = Partial<UserShopTypeType>;

View File

@@ -1,6 +1,8 @@
import { SHOP_REFRESH_TYPE } from "../../consts";
import { ActivityModelType } from "../../db/Activity";
import { UserShopType } from "../../db/UserShop";
import { UserShopTypeType } from "../../db/UserShopType";
import { nowSeconds } from "../../pubUtils/timeUtil";
import { ActivityBase } from "../activityField/activityField";
interface ShopInDb {
@@ -53,7 +55,13 @@ export class ShopData extends ActivityBase {
public findByItemId(itemId: number) {
let item = this.list.find(cur => cur.id == itemId);
if(!item) return null;
return {...item, shop: this.shop, type: this.type};
return <ShopDicExtendData>{...item, shop: this.shop, type: this.type};
}
public findByProductID(productID: string) {
let item = this.list.find(cur => cur.productID == productID);
if(!item) return null;
return <ShopDicExtendData>{...item, shop: this.shop, type: this.type};
}
}
@@ -94,8 +102,20 @@ export class ShopDicData {
this.beginTime = obj.beginTime;
this.endTime = obj.endTime;
}
public setReadRecord(record: UserShopTypeType) {
let now = nowSeconds();
if(this.beginTime <= now && this.endTime >= now) {
let readTime = record?.readTime||0;
if(this.createTime > readTime) this.isNew = true;
}
}
}
export interface ShopDicExtendData extends ShopDicData {
shop: number;
type: number;
}
export class ShopReturnData {
activityId: number = 0;
@@ -112,14 +132,26 @@ export class ShopReturnData {
public setDicByActivity(activityData: ShopData) {
if(!activityData || activityData.shop != this.shop || activityData.type != this.type) return;
this.activityId = activityData.activityId;
this.dic.push(...activityData.list)
for(let obj of activityData.list) {
let newDic = new ShopDicData(obj);
this.dic.push(newDic);
}
}
public setUserRecords(record: UserShopType) {
public addUserRecords(record: UserShopType) {
if(!record || record.shop != this.shop || record.type != this.type) return;
let dic = this.dic.find(cur => cur.id == record.itemId);
console.log('######### addUserRecords', dic?.createTime, record?.createTime)
if(!dic || (dic.createTime && dic.createTime != record.createTime)) return;
let recordResult = new ShopReturnRecordData(record);
if(recordResult && recordResult.shopItemId) this.records.push(recordResult)
}
public setReadRecord(record: UserShopTypeType) {
for(let obj of this.dic) {
obj.setReadRecord(record);
}
}
}
export class ShopReturnRecordData {

View File

@@ -1041,5 +1041,12 @@
"price": 98,
"message": "每周天外陨金礼包",
"gameCoin": 1
},
{
"productID": "com.bantu.sgzzyz.yb61",
"type": 44,
"price": 98,
"message": "商店",
"gameCoin": 1
}
]

View File

@@ -11,7 +11,7 @@
"purchaseLimit": 6,
"refreshType": 1,
"money": 31002,
"price": "1&0|3&50",
"price": "1&0|3&50|5&100",
"chosen": 1,
"indirectId": 0,
"vipPurchaseLimit": 4
@@ -45,7 +45,7 @@
"purchaseLimit": 8,
"refreshType": 2,
"money": 31002,
"price": 1000,
"price": "1&1000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -62,7 +62,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 31002,
"price": 300,
"price": "1&300",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -79,7 +79,7 @@
"purchaseLimit": 50,
"refreshType": 2,
"money": 31002,
"price": 300,
"price": "1&300",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -96,7 +96,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 31002,
"price": 400,
"price": "1&400",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -113,7 +113,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 31002,
"price": 250,
"price": "1&250",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -130,7 +130,7 @@
"purchaseLimit": 1000,
"refreshType": 1,
"money": 31002,
"price": 200,
"price": "1&200",
"chosen": 1,
"indirectId": 1,
"vipPurchaseLimit": 0
@@ -147,7 +147,7 @@
"purchaseLimit": 1000,
"refreshType": 1,
"money": 31002,
"price": 500,
"price": "1&500",
"chosen": 1,
"indirectId": 2,
"vipPurchaseLimit": 0
@@ -164,7 +164,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 31002,
"price": 500,
"price": "1&500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -181,7 +181,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 31002,
"price": 200,
"price": "1&200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -198,7 +198,7 @@
"purchaseLimit": 20,
"refreshType": 1,
"money": 40005,
"price": 200,
"price": "1&200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -215,7 +215,7 @@
"purchaseLimit": 20,
"refreshType": 1,
"money": 40005,
"price": 500,
"price": "1&500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -232,7 +232,7 @@
"purchaseLimit": 20,
"refreshType": 1,
"money": 40005,
"price": 1200,
"price": "1&1200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -249,7 +249,7 @@
"purchaseLimit": 20,
"refreshType": 1,
"money": 40005,
"price": 2400,
"price": "1&2400",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -266,7 +266,7 @@
"purchaseLimit": 20,
"refreshType": 1,
"money": 40005,
"price": 10000,
"price": "1&10000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -283,7 +283,7 @@
"purchaseLimit": 1000,
"refreshType": 1,
"money": 40005,
"price": 30,
"price": "1&30",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -300,7 +300,7 @@
"purchaseLimit": 100,
"refreshType": 1,
"money": 40005,
"price": 25,
"price": "1&25",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -317,7 +317,7 @@
"purchaseLimit": 140,
"refreshType": 1,
"money": 40005,
"price": 200,
"price": "1&200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -334,7 +334,7 @@
"purchaseLimit": 16,
"refreshType": 1,
"money": 40005,
"price": 1500,
"price": "1&1500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -351,7 +351,7 @@
"purchaseLimit": 20,
"refreshType": 2,
"money": 40001,
"price": 100,
"price": "1&100",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -368,7 +368,7 @@
"purchaseLimit": 2,
"refreshType": 2,
"money": 40001,
"price": 400,
"price": "1&400",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -385,7 +385,7 @@
"purchaseLimit": 6,
"refreshType": 1,
"money": 40001,
"price": 10,
"price": "1&10",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -402,7 +402,7 @@
"purchaseLimit": 6,
"refreshType": 1,
"money": 40001,
"price": 20,
"price": "1&20",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -419,7 +419,7 @@
"purchaseLimit": 4,
"refreshType": 1,
"money": 40001,
"price": 30,
"price": "1&30",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -436,7 +436,7 @@
"purchaseLimit": 2,
"refreshType": 1,
"money": 40001,
"price": 50,
"price": "1&50",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -453,7 +453,7 @@
"purchaseLimit": 30,
"refreshType": 3,
"money": 40004,
"price": 150,
"price": "1&150",
"chosen": 1,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -470,7 +470,7 @@
"purchaseLimit": 2,
"refreshType": 2,
"money": 40004,
"price": 400,
"price": "1&400",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -487,7 +487,7 @@
"purchaseLimit": 80,
"refreshType": 2,
"money": 40004,
"price": 10,
"price": "1&10",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -504,7 +504,7 @@
"purchaseLimit": 20,
"refreshType": 2,
"money": 40004,
"price": 45,
"price": "1&45",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -521,7 +521,7 @@
"purchaseLimit": 10,
"refreshType": 2,
"money": 40004,
"price": 60,
"price": "1&60",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -538,7 +538,7 @@
"purchaseLimit": 10,
"refreshType": 2,
"money": 40004,
"price": 75,
"price": "1&75",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -555,7 +555,7 @@
"purchaseLimit": 10,
"refreshType": 2,
"money": 40004,
"price": 90,
"price": "1&90",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -572,7 +572,7 @@
"purchaseLimit": 10,
"refreshType": 2,
"money": 40004,
"price": 120,
"price": "1&120",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -589,7 +589,7 @@
"purchaseLimit": 20,
"refreshType": 2,
"money": 40004,
"price": 100,
"price": "1&100",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -606,7 +606,7 @@
"purchaseLimit": 1,
"refreshType": 4,
"money": 40014,
"price": 30,
"price": "1&30",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -623,7 +623,7 @@
"purchaseLimit": 1,
"refreshType": 4,
"money": 40014,
"price": 30,
"price": "1&30",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -640,7 +640,7 @@
"purchaseLimit": 1,
"refreshType": 4,
"money": 40006,
"price": 30,
"price": "1&30",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -657,7 +657,7 @@
"purchaseLimit": 1,
"refreshType": 4,
"money": 40006,
"price": 10,
"price": "1&10",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -674,7 +674,7 @@
"purchaseLimit": 1,
"refreshType": 2,
"money": 40002,
"price": 500,
"price": "1&500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -691,7 +691,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 400,
"price": "1&400",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -708,7 +708,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 250,
"price": "1&250",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -725,7 +725,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40002,
"price": 500,
"price": "1&500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -742,7 +742,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40002,
"price": 200,
"price": "1&200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -759,7 +759,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 200,
"price": "1&200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -776,7 +776,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 200,
"price": "1&200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -793,7 +793,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 200,
"price": "1&200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -810,7 +810,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 200,
"price": "1&200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -827,7 +827,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 500,
"price": "1&500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -844,7 +844,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 500,
"price": "1&500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -861,7 +861,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 500,
"price": "1&500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -878,7 +878,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 500,
"price": "1&500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -895,7 +895,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 1000,
"price": "1&1000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -912,7 +912,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 1000,
"price": "1&1000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -929,7 +929,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 1000,
"price": "1&1000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -946,7 +946,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 1000,
"price": "1&1000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -963,7 +963,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 2500,
"price": "1&2500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -980,7 +980,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 2500,
"price": "1&2500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -997,7 +997,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 2500,
"price": "1&2500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1014,7 +1014,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 2500,
"price": "1&2500",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1031,7 +1031,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 5000,
"price": "1&5000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1048,7 +1048,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 5000,
"price": "1&5000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1065,7 +1065,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 5000,
"price": "1&5000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1082,7 +1082,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 5000,
"price": "1&5000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1099,7 +1099,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 8000,
"price": "1&8000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1116,7 +1116,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 8000,
"price": "1&8000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1133,7 +1133,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 8000,
"price": "1&8000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1150,7 +1150,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 8000,
"price": "1&8000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1167,7 +1167,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 15000,
"price": "1&15000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1184,7 +1184,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 15000,
"price": "1&15000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1201,7 +1201,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 15000,
"price": "1&15000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1218,7 +1218,7 @@
"purchaseLimit": 9999,
"refreshType": 2,
"money": 40002,
"price": 15000,
"price": "1&15000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1235,7 +1235,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40007,
"price": 100,
"price": "1&100",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1252,7 +1252,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40007,
"price": 250,
"price": "1&250",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1269,7 +1269,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40007,
"price": 600,
"price": "1&600",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1286,7 +1286,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40007,
"price": 1200,
"price": "1&1200",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1303,7 +1303,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40007,
"price": 5000,
"price": "1&5000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1320,7 +1320,7 @@
"purchaseLimit": 1200,
"refreshType": 1,
"money": 40007,
"price": 20,
"price": "1&20",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1337,7 +1337,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40011,
"price": 10,
"price": "1&10",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1354,7 +1354,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40011,
"price": 10,
"price": "1&10",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1371,7 +1371,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40011,
"price": 10,
"price": "1&10",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1388,7 +1388,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40011,
"price": 10,
"price": "1&10",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1405,7 +1405,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40011,
"price": 1000,
"price": "1&1000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1422,7 +1422,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40011,
"price": 2000,
"price": "1&2000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1439,7 +1439,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40011,
"price": 4000,
"price": "1&4000",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0
@@ -1456,7 +1456,7 @@
"purchaseLimit": 9999,
"refreshType": 1,
"money": 40011,
"price": 800,
"price": "1&800",
"chosen": 0,
"indirectId": 0,
"vipPurchaseLimit": 0