-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
修改內文、加一個大按鈕
- Loading branch information
Showing
1 changed file
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,48 @@ | ||
<script setup> | ||
import { useRouter } from 'vue-router'; | ||
const router = useRouter(); | ||
</script> | ||
|
||
<template> | ||
<div> | ||
<h1>遊戲規則</h1> | ||
<div class="my-4"> | ||
<p> | ||
每個人最多可以<mark>獲得 2 張抽獎券</mark>,得到 2 張抽獎券的人可以抽到大獎,得到 1 張抽獎券的可以參加普獎抽獎。在抽完所有大獎後,會將剩餘的抽獎券混在一起,抽出其他的普獎。 | ||
每個人最多可以<mark>獲得 2 張抽獎券</mark>,得到 2 張抽獎券的人可以抽到大獎,得到 1 張抽獎券的可以參加普獎抽獎。 | ||
</p> | ||
<p><mark><strong>每個人會以抽到的最大獎為優先,不得重複領獎。</strong></mark></p> | ||
<h3>獲得點數的方式</h3> | ||
<p> | ||
<ol> | ||
<li>在各社團攤位進行活動</li> | ||
<li>在各社團攤位進行打卡,並標記 #TTU社團博覽會</li> | ||
<li>在各社團攤位進行打卡,並標記 <a class="" style="text-decoration: none;">#TTU社團博覽會</a> | ||
</li> | ||
</ol> | ||
</p> | ||
<h3>獲取抽獎券的條件</h3> | ||
<p> | ||
<strong>第一章抽獎券獲得資格</strong><br> | ||
在不同社團攤位分別獲得 1 個活動點數,需集滿 2 點 | ||
<strong>第一張抽獎券獲得資格</strong><br> | ||
在<mark>不同社團攤位</mark>分別獲得 1 個活動點數,需集滿 2 點 | ||
</p> | ||
<p> | ||
<strong>第二章抽獎券獲得資格</strong><br> | ||
除了以上 2 個社團,另找1個社團發 IG 限動/po 文,可再得 1 點 | ||
<strong>第二章張獎券獲得資格</strong><br> | ||
除了以上 2 個社團,另找1個社團<mark>發 IG 限動/po 文</mark>,可再得 1 點 | ||
</p> | ||
<h3>抽獎</h3> | ||
<p> | ||
活動結束後<mark>於學生會 IG 直播在白宮前的抽獎大會</mark>,也歡迎同學於現場看抽獎過程,獲獎者請關注學生會 IG 公告領獎時間,屆時再請至學生會辦公室領取獎品,詳情待學生會公告相關資訊。 | ||
活動結束後<mark>於學生會 IG 直播在白宮前的抽獎大會</mark>,也歡迎同學於現場看抽獎過程,獲獎者請關注 | ||
<a href="http://instagram.com/tatung_sa" target="_blank" rel="noopener noreferrer"> | ||
<i class="fa-brands fa-instagram"></i> | ||
學生會 IG | ||
</a> | ||
公告領獎時間,屆時再請至學生會辦公室領取獎品,詳情待學生會公告相關資訊。 | ||
</p> | ||
<div class="container"> | ||
<button class="btn btn-primary btn-lg" @click="router.push({ name: 'stamp' });"> | ||
參與集點活動! | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |