协议调试

This commit is contained in:
chen wei bo
2025-09-09 18:16:37 +08:00
parent f9f2077665
commit e89d515bde
10 changed files with 468 additions and 32 deletions
+7
View File
@@ -488,6 +488,13 @@ export class GirlData extends BaseData {
return oneData.getIsRelease();
}
/** 保存 付费技师是否已经解锁 */
public setIsRelease(categoryId: string, girlId: number, value: boolean): void {
let oneData = this.getGrilUnlock(categoryId, girlId);
if (!oneData) return;
oneData.setIsRelease(value);
}
/** 判断图片是否解锁 */
public isImageUnlock(categoryId: string, girlId: number, id: number): boolean {
let oneData = this.getGrilUnlock(categoryId, girlId);