修复:电子书VIP套餐页“白块”问题

This commit is contained in:
2025-12-19 14:38:17 +08:00
parent 11dfd01b39
commit a04d40a6d0
3 changed files with 56 additions and 4 deletions

12
types/vip.d.ts vendored
View File

@@ -24,4 +24,16 @@ export interface IVipItemProduct {
fee: number | null, // 课程价格
lastFee?: number | null, // 未使用字段
[key: string]: any
}
/**
* 电子书VIP套餐
*/
export interface IVipBook {
id: number
type: number
title: string
money: number // vip金额
days: number // vip天数
[key: string]: any
}