🐛 fix(TGWindow): 修复部分窗口打开不可见的问题

This commit is contained in:
BTMuli
2023-04-07 17:15:35 +08:00
parent a9a6eda4ae
commit 7a8c0892ea
6 changed files with 21 additions and 18 deletions

View File

@@ -39,7 +39,7 @@
alt="material.content_id"
:src="material.icon"
class="calendar-icon"
@click="showContent(material.content_id)"
@click="showContent(material.content_id, material.name)"
/>
</div>
<div class="content-detail">
@@ -49,7 +49,7 @@
alt="content.content_id"
:src="content.icon"
class="calendar-icon"
@click="showContent(content.content_id)"
@click="showContent(content.content_id, content.name)"
/>
</div>
</div>
@@ -73,7 +73,7 @@
alt="material.content_id"
:src="material.icon"
class="calendar-icon"
@click="showContent(material.content_id)"
@click="showContent(material.content_id, material.name)"
/>
</div>
<div class="content-detail">
@@ -83,7 +83,7 @@
alt="content.content_id"
:src="content.icon"
class="calendar-icon"
@click="showContent(content.content_id)"
@click="showContent(content.content_id, content.name)"
/>
</div>
</div>
@@ -101,6 +101,7 @@ import { TGAppData } from "../data/index";
import { type Map } from "../interface/Base";
import { CalendarData, CalendarItem } from "../interface/Calendar";
import { OBC_CONTENT_API } from "../plugins/Mys/interface/utils";
import { createTGWindow } from "../utils/TGWindow";
// loading
const loading = ref(true as boolean);
@@ -168,9 +169,9 @@ function getCalendar (day: number) {
return calendarData.value[week];
}
function showContent (contentId: number) {
// todo二级跳转目前先直接跳到角色详情页
window.open(OBC_CONTENT_API.replace("{content_id}", contentId.toString()));
function showContent (contentId: number, name: string) {
const url = OBC_CONTENT_API.replace("{content_id}", contentId.toString());
createTGWindow(url, "素材详情", name, 800, 600, true);
}
function getContents (day: number) {

View File

@@ -138,7 +138,7 @@ function checkCover (data: GachaData[]) {
}
function toOuter (url: string, title: string) {
createTGWindow(url, "祈愿", title, 1200, 800, true);
createTGWindow(url, "祈愿", title, 1200, 800, true, false);
}
function getLastPoolTime (time: number) {
@@ -156,7 +156,7 @@ function toPost (pool: GachaCard) {
post_id: pool.post_id.toString(),
},
}).href;
createTGWindow(path, "限时祈愿", pool.title, 960, 720, false);
createTGWindow(path, "限时祈愿", pool.title, 960, 720, false, false);
}
</script>

View File

@@ -118,7 +118,7 @@ async function toPost (card: PositionCard) {
},
}).href;
// 打开新窗口
createTGWindow(path, "近期活动", card.title, 960, 720, false);
createTGWindow(path, "近期活动", card.title, 960, 720, false, false);
}
</script>