Skip to content

Commit

Permalink
fix(wtf?)
Browse files Browse the repository at this point in the history
  • Loading branch information
Subilan committed Jan 16, 2024
1 parent 08707e9 commit 7eaa13e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/views/Applications.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
</banner>
<div class="container">
<div class="content typo">

<div class="quicksearch-button" @click="quicksearchOpened = !quicksearchOpened"
@mouseenter="mouseEnterQuickSearchBtn()" @mouseleave="mouseLeaveQuickSearchBtn()">
{{ quicksearchOpened ? '关闭' : '通过 ID 快速查询' }}
Expand All @@ -51,7 +50,7 @@
此页面列出了尝试取得白名单的玩家的所有审核记录,以及他们在问卷中填写的一些信息(由本人选择是否公开)。每个玩家在每次参与问卷时的相关信息,会被归类在填写时正运行或预计运行的周目的标题之下。</p>
<p v-view.once="flowUp">此页面上的信息不是实时更新的,会有一定的延迟。本人的信息根据本人意愿可随时修改,具体事宜请联系交流群内的管理员。</p>
<p v-view.once="flowUp">玩家个人的观点和提供的信息,不代表 Seati 的观点和信息。</p>
<div class="term" v-for="x in terms.reverse()">
<div class="term" v-for="x in terms">
<h1 class="primary-text" v-view.once="flowUp">ST{{ x.number }}</h1>
<div class="appl-cards">
<div class="appl-card" v-view.once="applCardHook" v-for="(y, k) in x.applications">
Expand Down Expand Up @@ -127,7 +126,7 @@ const terms: Term[] = [
number: 12,
applications: (applications12 as Application[]).reverse()
}
]
].reverse()
const quicksearchOverlay = ref<HTMLDivElement | null>(null);
const quicksearchTextbox = ref<HTMLDivElement | null>(null);
Expand Down

0 comments on commit 7eaa13e

Please sign in to comment.