123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774 |
- <script setup lang="ts">
- import { ref, reactive, computed, onMounted } from "vue";
- import { useMainStore } from "@/stores/main";
- import { storeToRefs } from "pinia";
- import { useDisplay } from "vuetify";
- import { useRoute } from "vue-router";
- import { useI18n } from "vue-i18n";
- import { googleTokenLogin, decodeCredential } from "vue3-google-login";
- import type { CallbackTypes } from "vue3-google-login";
- // import Navbar from "@/components/Navbar.vue";
- import Dialog from "@/components/Dialog.vue";
- const mainStore = useMainStore();
- // variable
- const { t } = useI18n();
- const route = useRoute();
- const { name } = useDisplay();
- const email = ref("");
- const password = ref("");
- let ser_no: any = ref("");
- let showPassword = ref(false);
- let loginState = ref(false);
- let loading = ref(false);
- let time = ref(0);
- let dialog = reactive({
- msg: "",
- state: "",
- show: false,
- icon: "check_circle",
- });
- // getter
- const width = computed(() => {
- switch (name.value) {
- case "xs":
- return 12;
- case "sm":
- return 8;
- }
- });
- function setDialog(status: Boolean, msg: String = "") {
- if (status) {
- dialog.show = true;
- dialog.state = "success";
- dialog.msg =
- "儲值成功!<br/>已獲得價值 1000 元的 120 秒影片製作時間<br/>(儲值成功後即可登入電腦版進行影片製作)";
- dialog.icon = "check_circle";
- if (mainStore.userProfile?.available_time) {
- mainStore.userProfile.available_time =
- mainStore.userProfile.available_time + time.value;
- }
- } else {
- dialog.show = true;
- dialog.state = "error";
- dialog.msg = `${msg}`;
- dialog.icon = "highlight_off";
- }
- }
- // action
- async function submit() {
- loading.value = true;
- if (email.value === "" || password.value === "") {
- loading.value = false;
- return;
- }
- let response = await mainStore.qrLogIn(
- email.value,
- password.value,
- ser_no.value
- );
- loading.value = false;
- if (response?.data.time_added === -1) {
- setDialog(false, "此序號無效");
- } else if (response?.status === 200) {
- time.value = response?.data.time_added;
- setTimeout(() => {
- setDialog(true);
- }, 500);
- }
- }
- // lifecycle
- onMounted(() => {
- console.log("onMounted");
- if (route.query["add_time_code"]) {
- ser_no.value = route.query["add_time_code"];
- }
- mainStore.qrCheckLoggedIn();
- if (mainStore.token) {
- checkCode("");
- } else {
- loginState.value = false;
- }
- async function checkCode(method: string = "") {
- loading.value = true;
- let response: any = await mainStore.qrAddTime(ser_no.value);
- loading.value = false;
- if (response.status === 200) {
- time.value = response?.data.time_added;
- loginState.value = true;
- setDialog(true);
- } else if (response.response.status === 400) {
- setDialog(
- false,
- "此序號已被使用 <br> This serial number is already used"
- );
- }
- }
- // if (route.params.ser_no) {
- // ser_no.value = route.params.ser_no;
- // console.log("ser_no.value", ser_no.value);
- // }
- });
- const callback: CallbackTypes.CredentialCallback = async (response: any) => {
- loading.value = true;
- const userData: any = decodeCredential(response.credential);
- let res = await mainStore.qrGoogleLogin(userData.email, ser_no.value);
- loading.value = false;
- if (res?.data.time_added === -1) {
- setDialog(false, "此序號無效");
- } else if (res?.status === 200) {
- setTimeout(() => {
- setDialog(true);
- }, 500);
- }
- };
- </script>
- <template>
- <!-- <Navbar /> -->
- <v-container fluid class="pa-0 overflow-hidden">
- <div class="ai_anchor3_content">
- <div class="ai_anchor3_content_box">
- <img
- class="ai_anchor3_content_title img-fluid"
- src="../assets/img/qrcode/aianchor3-title.png"
- alt=""
- />
- <h1>集仕多股份有限公司</h1>
- <h1>AI 主播 儲值禮物卡</h1>
- </div>
- <div class="ai_anchor3_content_start">
- <!-- <h1>開放倒數</h1> -->
- <img
- class="img-fluid"
- src="../assets/img/qrcode/startline.png"
- alt=""
- />
- </div>
- <v-row
- align="center"
- justify="center"
- no-gutters
- class="overflow-hidden mx-auto login-form"
- v-if="!loginState"
- >
- <v-col cols="12" class="px-6 my-8 my-md-0">
- <div class="form-title">
- <h3>登入後即可獲得儲值金</h3>
- <span></span>
- </div>
- <v-form ref="form" lazy-validation>
- <v-text-field
- v-model="email"
- name="email"
- prepend-icon="person"
- :rules="[(v) => !!v || '請輸入您的帳號']"
- :label="$t('emailAddress')"
- required
- >
- </v-text-field>
- <v-text-field
- v-model="password"
- name="password"
- id="password"
- prepend-icon="key"
- :append-icon="showPassword ? 'visibility' : 'visibility_off'"
- :rules="[(v) => !!v || '請輸入您的密碼']"
- :type="showPassword ? 'text' : 'password'"
- :label="$t('password')"
- hint="4-12 位數密碼"
- @click:append="showPassword = !showPassword"
- @keyup.enter="submit"
- required
- >
- </v-text-field>
- <!-- <p class="text-center">
- {{ t("haventAccount") }}
- <router-link to="/signup">{{ t("register") }}</router-link> /
- <router-link to="/recover-password">{{
- t("forgotPsd")
- }}</router-link>
- </p> -->
- <div class="d-flex flex-column">
- <v-btn rounded="pill" @click.prevent="submit" class="login-btn">
- {{ t("loginLink") }}
- </v-btn>
- <section class="line">
- <p class="d-none d-sm-block">
- 沒有帳號嗎?使用 Google 快速註冊
- </p>
- <p class="d-block d-sm-none">
- 沒有帳號嗎? <br />
- 使用 Google 快速註冊
- </p>
- <!-- <span></span> -->
- </section>
- <div class="mx-auto mt-5" style="max-width: 235px">
- <GoogleLogin
- :callback="callback"
- prompt
- popup-type="TOKEN"
- class="w-100"
- />
- </div>
- </div>
- </v-form>
- </v-col>
- </v-row>
- <div class="ai_anchor_moichiu left-70" style="background: #67b5b5">
- <v-row align="center" no-gutters class="px-0 mx-0">
- <v-col cols="12" sm="4">
- <div class="line1">
- <img
- class="img-fluid anchor_moichiu"
- src="../assets/img/qrcode/moichiu.webp"
- alt=""
- />
- <img
- class="ai_anchor_line1"
- src="../assets/img/qrcode/line1.png"
- alt=""
- />
- </div>
- <div class="anchor_name">
- <img
- class="img-fluid"
- src="../assets/img/qrcode/moichiu.png"
- alt=""
- />
- </div>
- </v-col>
- <v-col :cols="width">
- <div class="ai_anchor_moichiu_text">
- <p>To. 親愛的 VIP</p>
- <p>我知道您們已經準備好,開始使用 AI 主播的系統了</p>
- <p>儲值金還在來的路上</p>
- <!-- <p>在此之前,系統目前測試中</p> -->
- <p>預計 2023/04/06 後開始正式上線!</p>
- </div>
- </v-col>
- </v-row>
- </div>
- <!-- <div class="mt-100">
- <div class="ai_anchor_moichiu" style="background: #ce96c1">
- <v-row align="center" no-gutters class="px-0 mx-0">
- <v-col :cols="width">
- <div class="ai_anchor_moichiu_text">
- <p>如果有任何不清楚的,歡迎與我們聯繫</p>
- <p>AI 主播系統裡會有使用教學</p>
- <p>現在即可開始使用</p>
- <p>先登入系統,看看製作影片還需要哪些東西吧!</p>
- <p>感謝您的耐心等候</p>
- </div>
- </v-col>
- <v-col cols="4">
- <div class="line2">
- <img
- class="img-fluid anchor_angela"
- src="../assets/img/qrcode/angela.webp"
- alt=""
- />
- <img
- class="ai_anchor_line2"
- src="../assets/img/qrcode/line2.png"
- alt=""
- />
- </div>
- <div class="anchor_name2">
- <img
- class="img-fluid"
- src="../assets/img/qrcode/Angela.png"
- alt=""
- />
- </div>
- </v-col>
- </v-row>
- </div>
- </div> -->
- <div class="progress-item text-center">
- <v-progress-circular
- indeterminate
- color="primary"
- :size="50"
- v-if="loading"
- ></v-progress-circular>
- </div>
- <div class="CTA_Button_div text-center">
- <button type="button" class="CTA_Button">
- <!-- 點我開始製作 AI 主播!<br />Log In -->
- AI 三代主播系統 <br />
- 於 2023/04/06 正式上線!
- </button>
- </div>
- <div class="CTA_box">
- <a href="https://ai.choozmo.com/ai-presenter/info/" target="_blank">
- <div class="cta-content">看更多<br />官網介紹</div>
- </a>
- <a href="https://ai.choozmo.com/contact/service/" target="_blank">
- <div class="cta-content">
- 聯絡我們
- <img class="icon20" src="../assets/img/qrcode/icon-19.png" alt="" />
- </div>
- </a>
- <a href="https://line.me/R/ti/p/@choozmo?from=page" target="_blank">
- <div class="cta-content">
- 關注我們
- <img class="icon20" src="../assets/img/qrcode/icon-20.png" alt="" />
- </div>
- </a>
- </div>
- <div class="logo_box">
- <img
- class="choozmologo"
- src="../assets/img/qrcode/choozmologo.png"
- alt=""
- />
- </div>
- </div>
- <Dialog
- :msg="dialog.msg"
- :state="dialog.state"
- :dialog="dialog.show"
- :icon="dialog.icon"
- :qrcode="true"
- @close="dialog.show = false"
- ></Dialog>
- </v-container>
- </template>
- <style lang="scss" scoped>
- .ai_anchor3_content {
- background-image: url("../assets/img/qrcode/aianchor3bg.png");
- width: 100%;
- background-size: cover;
- background-repeat: no-repeat;
- }
- .login-form {
- color: #fff;
- margin-bottom: 100px;
- .line {
- margin-top: 50px;
- display: flex;
- justify-content: center;
- position: relative;
- p {
- position: relative;
- z-index: 1;
- color: #fff;
- letter-spacing: 1px;
- font-size: 24px;
- font-weight: bold;
- text-align: center;
- @media (max-width: 600px) {
- font-size: 18px;
- }
- &::after,
- &::before {
- content: "";
- display: block;
- height: 1px;
- width: 50px;
- background: #fff;
- position: absolute;
- bottom: 18px;
- @media (max-width: 600px) {
- bottom: 20px;
- }
- }
- &::after {
- left: -55px;
- }
- &::before {
- right: -55px;
- }
- }
- }
- .login-btn {
- color: #fff;
- background: #4f4fa0;
- }
- .form-title span {
- background: #fff !important;
- }
- }
- .logo_box {
- text-align: end;
- overflow: hidden;
- }
- .choozmologo {
- width: 500px;
- margin-right: -50px;
- margin-bottom: -80px;
- @media (max-width: 767px) {
- width: 80vw;
- }
- @media (max-width: 376px) {
- width: 85vw;
- }
- }
- .cta-content {
- width: 200px;
- height: 130px;
- margin: 0 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border: 3px solid #fff;
- padding: 30px 20px;
- color: #fff;
- border-radius: 10px;
- text-align: center;
- font-size: 24px;
- @media (max-width: 767px) {
- width: 100%;
- margin: 5vh auto 0;
- }
- @media (max-width: 376px) {
- width: 187px;
- }
- }
- .icon20 {
- width: 50px;
- }
- .CTA_box {
- width: 50%;
- margin: 100px auto;
- display: flex;
- justify-content: space-evenly;
- @media (max-width: 1200px) {
- width: 70%;
- }
- @media (max-width: 767px) {
- flex-direction: column;
- }
- }
- .CTA_Button_div {
- margin-top: 100px;
- }
- .CTA_Button {
- width: 400px;
- height: 120px;
- border-radius: 50px;
- background: #4f4fa0;
- transition: all 300ms ease-in-out;
- box-shadow: 1px 15px #2e3287;
- color: #fff;
- border: none;
- padding: 0px 30px;
- font-size: 24px;
- position: relative;
- bottom: 0px;
- left: 0px;
- transition: all 300ms ease-in-out;
- font-weight: 600;
- letter-spacing: 2px;
- &:hover {
- bottom: -10px;
- box-shadow: none;
- }
- @media (max-width: 991px) {
- width: 80%;
- }
- @media (max-width: 767px) {
- width: 80%;
- margin-top: 20vh;
- }
- @media (max-width: 575px) {
- margin-top: 25vh;
- font-size: 20px;
- }
- }
- .ai_anchor3_content_box {
- width: 50vw;
- margin: 0 auto;
- padding-top: 150px;
- text-align: center;
- color: #fff;
- h1 {
- font-size: 2rem;
- }
- @media (max-width: 991px) {
- width: 80vw;
- }
- @media (max-width: 767px) {
- width: 90vw;
- }
- }
- .ai_anchor_moichiu_text {
- @media (max-width: 767px) {
- height: 300px;
- padding: 0;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- }
- .ai_anchor3_content_start {
- padding-top: 50px;
- width: 93%;
- margin: 0 auto;
- text-align: center;
- color: #fff;
- margin-bottom: 15px;
- h1 {
- margin-bottom: -60px;
- }
- }
- .left-70 {
- left: 70px;
- @media (max-width: 991px) {
- left: 0px;
- }
- }
- .mt-100 {
- margin-top: 100px;
- @media (max-width: 767px) {
- margin-top: 25vh;
- }
- @media (max-width: 400px) {
- margin-top: 35vh;
- }
- }
- .ai_anchor_moichiu {
- width: 75%;
- margin: auto;
- border-radius: 1rem;
- padding: 50px 10px;
- position: relative;
- @media (max-width: 991px) {
- width: 80%;
- padding: 40px 10px;
- }
- @media (max-width: 767px) {
- padding: 20px 10px;
- }
- @media (max-width: 767px) {
- width: 90%;
- }
- .anchor_moichiu {
- margin-left: -60px;
- @media (max-width: 767px) {
- margin-bottom: 0px;
- margin-top: 0;
- position: absolute;
- width: 50vw;
- left: 53px;
- bottom: -134px;
- }
- }
- .anchor_moichiu,
- .anchor_angela {
- width: 350px;
- max-width: unset;
- @media (max-width: 1200px) {
- width: 300px;
- }
- @media (max-width: 991px) {
- width: 275px;
- }
- }
- .anchor_angela {
- @media (max-width: 767px) {
- margin-bottom: 0px;
- margin-top: 0;
- position: absolute;
- right: -60vw;
- bottom: -103px;
- }
- }
- .anchor_name {
- position: absolute;
- bottom: -20px;
- left: -8px;
- width: 80px;
- @media (max-width: 991px) {
- width: 50px;
- left: -8px;
- bottom: -20px;
- }
- @media (max-width: 767px) {
- left: 250px;
- bottom: -170px;
- }
- img {
- @media (max-width: 1200px) {
- max-width: unset;
- width: 70px;
- }
- @media (max-width: 991px) {
- max-width: unset;
- width: 65px;
- }
- }
- }
- .anchor_name2 {
- position: absolute;
- bottom: -5px;
- right: 0;
- width: 100px;
- @media (max-width: 991px) {
- bottom: -8px;
- right: -3px;
- width: 80px;
- }
- @media (max-width: 767px) {
- bottom: -27vw;
- right: 280px;
- width: 100px;
- }
- @media (max-width: 575px) {
- bottom: -32vw;
- right: 270px;
- width: 70px;
- }
- @media (max-width: 414px) {
- bottom: -40vw;
- right: 285px;
- }
- p {
- color: #fff !important;
- font-size: 14px;
- margin-bottom: 0rem;
- }
- img {
- width: 100px;
- @media (max-width: 991px) {
- width: 80px;
- }
- @media (max-width: 767px) {
- width: 100px;
- }
- }
- }
- .line1,
- .line2 {
- position: relative;
- }
- .line1 {
- @media (max-width: 767px) {
- bottom: -360px;
- }
- }
- .line2 {
- @media (max-width: 991px) {
- margin-left: 30px;
- }
- @media (max-width: 767px) {
- bottom: -120px;
- }
- }
- .ai_anchor_line1 {
- max-width: 1500px;
- position: absolute;
- bottom: 0px;
- left: 165px;
- object-fit: cover;
- @media (max-width: 1200px) {
- max-width: 1000px;
- left: 140px;
- }
- @media (max-width: 991px) {
- width: 85vw;
- left: 123px;
- }
- @media (max-width: 767px) {
- left: 175px;
- bottom: -138px;
- }
- @media (max-width: 575px) {
- left: 168px;
- }
- }
- .ai_anchor_line2 {
- width: 1300px;
- height: 290px;
- position: absolute;
- bottom: 6px;
- left: -1238px;
- @media (max-width: 1200px) {
- width: 830px;
- height: auto;
- bottom: -5px;
- left: -775px;
- }
- @media (max-width: 991px) {
- width: 700px;
- height: auto;
- bottom: -5px;
- left: -665px;
- }
- @media (max-width: 767px) {
- width: 100vw;
- bottom: -15vw;
- left: -345px;
- }
- @media (max-width: 575px) {
- left: -333px;
- }
- }
- p {
- font-weight: 900;
- letter-spacing: 3px;
- text-align: center;
- margin-bottom: 0.3rem;
- font-size: 22px;
- @media (max-width: 991px) {
- font-size: 20px;
- }
- @media (max-width: 767px) {
- font-size: 16px;
- }
- }
- }
- .img-fluid {
- max-width: 100%;
- height: auto;
- }
- .progress-item {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- </style>
|