Merge branch 'main' of 47.107.44.202:xionglijia/18xchat

This commit is contained in:
2025-09-09 15:33:48 +08:00
4 changed files with 80 additions and 18 deletions
@@ -173,7 +173,7 @@ export class GirlDetailPanel extends li_BaseView {
"Chat18x"
);
let resIds = girlData.getAllGrilPhotoDataId(this.category.toString(), this.id);
let resIds = girlData.getAllDisplayGrilPhotoId(this.category.toString(), this.id);
// 也立即尝试调整(以防已经加载完成)
this.adjustVideoScale();
this.refreshImgs(1, this.category, this.id, resIds);
@@ -182,13 +182,13 @@ export class GirlDetailPanel extends li_BaseView {
bindImgToggle() {
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
let resIds = girlData.getAllGrilPhotoDataId(this.category.toString(), this.id);
let resIds = girlData.getAllDisplayGrilPhotoId(this.category.toString(), this.id);
this.refreshImgs(1, this.category, this.id, resIds);
}
bindVideoToggle() {
const girlData = DataManager.I.getDataById<GirlData>(DataId.Girl);
let resIds = girlData.getAllGrilVideoDataId(this.category.toString(), this.id);
let resIds = girlData.getAllDisplayGrilVideoId(this.category.toString(), this.id);
this.refreshImgs(2, this.category, this.id, resIds);
}