| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658 |
- <script>
- import Vue from 'vue'
- import countryCode from '@/lib/countryCode.json'
- import thirdLogin from './third-login.vue'
- import { sendSmsCode, sentEmailCode, register, confirmEmail, getGoogleStatus, getLinkedinStatus } from '@/api/user'
- export default Vue.extend({
- name: 'Index',
- components: {
- thirdLogin
- },
- data() {
- return {
- countryCode,
- username: '',
- password: '',
- confirmPassword: '',
- confirmCode: '',
- savePassword: false,
- loading: false,
- isLogin: true,
- isPhone: true,
- phone: '',
- country_code: '86',
- email: '',
- code: '',
- timer: null,
- count: 0,
- pre_register_key: '',
- third_login: '',
- third_token: '',
- need_bind: false,
- is_back: false,
- env: process.env.NODE_ENV
- }
- },
- mounted() {
- this.getSavedAccount()
- this.parseQuery()
- },
- methods: {
- parseQuery() {
- const url = new URL(window.location.href.replace('#', '?'))
- function showError() {
- this.$notify({
- title: '登录失败',
- message: '登录失败,请稍后重试。',
- type: 'error'
- })
- this.third_login = ''
- this.is_back = false
- }
- if (url.searchParams.get('code')) {
- this.is_back = true
- this.third_login = 'linkin'
- getLinkedinStatus(
- url.searchParams.get('state'),
- url.searchParams.get('code')
- ).then(res => {
- if (res.data.api_token) {
- this.tokenLogin(res.data.api_token)
- } else if (res.data.third_token) {
- this.third_token = res.data.third_token
- this.need_bind = true
- } else {
- showError()
- }
- }).catch(err => {
- this.$notify({
- title: '提示',
- message: '领英授权登录失败' + err,
- type: 'error'
- })
- showError()
- })
- }
- if (url.searchParams.get('access_token')) {
- this.is_back = true
- this.third_login = 'google'
- getGoogleStatus(
- url.searchParams.get('state'),
- url.searchParams.get('access_token')
- ).then(res => {
- if (res.data.api_token) {
- this.tokenLogin(res.data.api_token)
- } else if (res.data.third_token) {
- this.third_token = res.data.third_token
- this.need_bind = true
- } else {
- showError()
- }
- }).catch(err => {
- this.$notify({
- title: '提示',
- message: '谷歌授权登录失败' + err,
- type: 'error'
- })
- showError()
- })
- }
- },
- openThirdLogin(type) {
- this.is_back = false
- this.third_login = type
- },
- closeThirdLogin() {
- this.is_back = false
- this.need_bind = false
- this.third_login = ''
- this.third_token = ''
- },
- sentSMSCode() {
- if (this.loading || this.timer) {
- return
- }
- this.loading = true
- sendSmsCode(this.phone, this.country_code).then(res => {
- this.$notify({
- title: '发送成功',
- message: '短信验证码已发送,请注意查收',
- type: 'success'
- })
- this.count = 60
- this.timer = setInterval(() => {
- if (this.count > 0) {
- this.count--
- } else {
- clearInterval(this.timer)
- this.timer = null
- }
- }, 1000)
- this.loading = false
- }).catch(err => {
- this.$notify({
- title: '提示',
- message: '验证码发送失败' + err,
- type: 'error'
- })
- this.loading = false
- })
- },
- sentMailCode() {
- if (this.loading || this.timer) {
- return
- }
- this.loading = true
- sentEmailCode(this.email).then(res => {
- this.$notify({
- title: '发送成功',
- message: '邮件已发送,请注意查收',
- type: 'success'
- })
- this.count = 60
- this.timer = setInterval(() => {
- if (this.count > 0) {
- this.count--
- } else {
- clearInterval(this.timer)
- this.timer = null
- }
- }, 1000)
- this.loading = false
- }).catch(err => {
- this.$notify({
- title: '发送失败',
- message: '验证码发送失败' + err,
- type: 'error'
- })
- this.loading = false
- })
- },
- emailRegister() {
- if (this.loading) {
- return
- }
- if (this.email === '' || this.code === '' || this.password === '' || this.confirmPassword === '') {
- this.$notify({
- title: '提示',
- message: '请填写邮箱和验证码!',
- type: 'warning'
- })
- }
- if (this.password !== this.confirmPassword) {
- this.$notify({
- title: '提示',
- message: '密码不一致!',
- type: 'warning'
- })
- }
- this.loading = true
- let invite_code = localStorage.getItem('duoguo_invite_code') || ''
- register(this.email, '', this.code, 1, 0, invite_code).then(res => {
- this.pre_register_key = res.data.pre_register_key
- confirmEmail(this.pre_register_key, this.password, this.confirmPassword).then(res => {
- this.isLogin = true
- this.$notify({
- title: '注册成功',
- message: '即将跳转至登录页。',
- type: 'success'
- })
- }).catch(err => {
- this.$notify({
- title: '注册失败',
- message: err,
- type: 'error'
- })
- this.loading = false
- })
- }).catch(err => {
- this.$notify({
- title: '注册失败',
- message: err,
- type: 'error'
- })
- this.loading = false
- })
- },
- phoneRegister() {
- if (this.loading) {
- return
- }
- if (this.phone === '' || this.code === '') {
- this.$notify({
- title: '提示',
- message: '请填写电话号码和验证码!',
- type: 'warning'
- })
- return
- }
- let invite_code = localStorage.getItem('duoguo_invite_code') || ''
- register(this.phone, this.country_code, this.code, 0, 0, invite_code).then(res => {
- this.isLogin = true
- this.$notify({
- title: '注册成功',
- message: '即将跳转至登录页。',
- type: 'success'
- })
- }).catch(err => {
- this.$notify({
- title: '注册失败',
- message: err,
- type: 'error'
- })
- })
- },
- getSavedAccount() {
- const account = localStorage.getItem('savedAccount')
- if (this.$route.query.inviteCode) {
- localStorage.setItem('duoguo_invite_code', this.$route.query.inviteCode)
- }
- if (account) {
- this.username = account.username
- this.password = account.password
- this.savePassword = true
- }
- },
- tokenLogin(token) {
- this.$store.dispatch('tokenLogin', { token: token }).then(res => {
- this.$router.push('/dashboard')
- }).catch(err => {
- this.$notify({
- title: '提示',
- message: '使用本地令牌登录失败' + err,
- type: 'error'
- })
- this.$message.error(err.message)
- })
- },
- login() {
- if (!this.username) {
- this.$message.error('请输入用户名')
- return
- }
- if (!this.password) {
- this.$message.error('请输入密码')
- return
- }
- if (this.loading) {
- return
- }
- this.loading = true
- this.$store.dispatch('login', {
- username: this.username,
- password: this.password,
- login_type: 0,
- login_portal: 0,
- savePassword: this.savePassword
- }).then(res => {
- this.loading = false
- this.$router.push('/dashboard')
- }).catch(err => {
- this.$notify({
- title: '提示',
- message: '登录失败' + err,
- type: 'error'
- })
- this.loading = false
- this.$message.error(err.message)
- })
- }
- }
- })
- </script>
- <template>
- <div class="body">
- <div class="footer">
- <div class="item">
- <span>Copyright © 2025 厦门聚页创意科技有限公司 Xiamen Matchpages Technology Co., Ltd All rights Reserved</span>
- </div>
- <a class="item" href="https://beian.miit.gov.cn/" target="_blank">
- <span>闽ICP备1145141919号</span>
- </a>
- <a class="item" href="https://beian.miit.gov.cn/" target="_blank">
- <img class="gongan" src="/static/image/beian.png" alt="">
- <span>闽公网安备1145141919号</span>
- </a>
- </div>
- <div class="bg-cont">
- <div class="text-cont">
- <img src="/static/image/logo_big_white.png" class="logo">
- <div class="title">10分钟创建海外观众预登记服务平台</div>
- <div class="desc">展会活动观众预登记的数字展会工具</div>
- </div>
- <img class="bg-image" src="/static/image/login2.webp" alt="">
- </div>
- <div :style="{height:third_login?'64vh':'auto'}" class="login-cont">
- <!-- <div class="image-left">-->
- <!-- <img class="image" src="/static/image/login.webp" alt="">-->
- <!-- <div class="title">展会服务系统</div>-->
- <!-- </div>-->
- <div class="cont-right">
- <div class="title">
- <div :class="['item',isLogin?'active':'']" @click="isLogin=true">登录</div>
- <div :class="['item',isLogin?'':'active']" @click="isLogin=false">注册</div>
- </div>
- <template v-if="isLogin">
- <el-input v-model="username" prefix-icon="el-icon-user" placeholder="请输入用户名" class="input" />
- <el-input v-model="password" prefix-icon="el-icon-unlock" placeholder="请输入密码" show-password class="input" />
- <el-checkbox v-model="savePassword">记住密码</el-checkbox>
- <el-button type="primary" class="button" @click="login">
- <span>登录</span>
- <span v-if="loading" class="el-icon-loading" />
- </el-button>
- </template>
- <template v-else>
- <template v-if="isPhone">
- <el-select v-model="country_code" placeholder="请选择国家">
- <el-option v-for="(item,index) in countryCode" :key="item.country_code+index" :label="'+'+item.phone_code+'('+item.chinese_name+')'" :value="item.phone_code" />
- </el-select>
- <el-input v-model="phone" prefix-icon="el-icon-mobile-phone" placeholder="请输入手机号码" class="input" />
- <el-input v-model="code" prefix-icon="el-icon-key" placeholder="请输入验证码" class="input">
- <el-button slot="append" :disabled="!!timer" :loading="loading" @click="sentSMSCode()">{{ timer?count+'s':'发送验证码' }}</el-button>
- </el-input>
- <div class="change-way" @click="isPhone=false">使用邮箱注册</div>
- <el-button type="primary" class="button" @click="phoneRegister()">
- <span>注册</span>
- <span v-if="loading" class="el-icon-loading" />
- </el-button>
- </template>
- <template v-else>
- <el-input v-model="email" prefix-icon="el-icon-message" placeholder="请输入电子邮箱地址" class="input" />
- <el-input v-model="code" prefix-icon="el-icon-key" placeholder="请输入验证码" class="input">
- <el-button slot="append" :disabled="!!timer" :loading="loading" @click="sentMailCode()">{{ timer?count+'s':'发送验证码' }}</el-button>
- </el-input>
- <el-input v-model="password" prefix-icon="el-icon-unlock" placeholder="请输入密码" show-password class="input" />
- <el-input v-model="confirmPassword" prefix-icon="el-icon-unlock" placeholder="请再次输入密码" show-password class="input" />
- <div class="change-way" @click="isPhone=true">使用手机注册</div>
- <el-button type="primary" class="button" @click="emailRegister()">
- <span>注册</span>
- <span v-if="loading" class="el-icon-loading" />
- </el-button>
- </template>
- </template>
- <div class="third-login">
- <div class="third-title">第三方登录/注册:</div>
- <div class="button-list">
- <div class="third-button wechat" @click="openThirdLogin('wechat')">
- <img class="icon" src="/static/image/icon/wechat.png">
- </div>
- <div class="third-button google" @click="openThirdLogin('google')">
- <img class="icon" src="/static/image/icon/google.png">
- </div>
- <div class="third-button linkin" @click="openThirdLogin('linkin')">
- <img class="icon" src="/static/image/icon/linkin.png">
- </div>
- </div>
- </div>
- <div :class="['third-window',third_login?'active':'']">
- <div class="third-head">
- <span class="third-title">第三方登录</span>
- <span class="el-icon-close" @click="closeThirdLogin()" />
- </div>
- <div class="third-body">
- <third-login
- v-if="third_login"
- :is_back="is_back"
- :need_bind.sync="need_bind"
- :third_token.sync="third_token"
- :login_type="third_login"
- @tokenLogin="tokenLogin"
- />
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <style scoped lang="scss">
- .body{
- padding: 0 240px;
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- background-image: linear-gradient(120deg,#F7FAFF,#A6C5FE);
- .footer{
- z-index: 2;
- position: absolute;
- left: 0;
- gap: 12px;
- bottom: 16px;
- width: 100%;
- display: flex;
- justify-content: center;
- .item{
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 4px;
- font-size: 14px;
- color: grey;
- text-decoration: none;
- .gongan{
- height: 1.2em;
- }
- }
- }
- .bg-cont{
- position: absolute;
- left: 0;
- top: 0;
- width: 52%;
- height: 100%;
- .text-cont{
- position: absolute;
- left: 48px;
- top: 64px;
- color: #ffffff;
- .logo{
- height: 52px;
- }
- .title{
- margin-top: 50px;
- padding-left: 8px;
- border-left: 3px solid #ffffff;
- font-size: 36px;
- font-weight: bold;
- }
- .desc{
- font-size: 20px;
- margin-top: 16px;
- }
- }
- .bg-image{
- width: 100%;
- }
- }
- .login-cont{
- background: white;
- overflow: hidden;
- display: grid;
- border-radius: 12px;
- box-shadow: 0 0 12px #00000011;
- grid-template-columns: 1fr;
- .image-left{
- display: none;
- padding: 40px;
- background: #123068;
- position: relative;
- .image{
- position: absolute;
- object-fit: cover;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .title{
- position: relative;
- color: white;
- font-size: 28px;
- font-weight: bold;
- }
- }
- .cont-right{
- position: relative;
- padding: 40px;
- display: flex;
- flex-direction: column;
- grid-gap: 16px;
- .third-window{
- position: absolute;
- top: 0;
- right: 0;
- width: 100%;
- height: 100%;
- background-color: white;
- transition-duration: 300ms;
- transform: translateX(100%);
- z-index: 10;
- display: grid;
- grid-template-rows: auto 1fr;
- &.active{
- transform: translateX(0);
- }
- .third-body{
- position: relative;
- iframe{
- border: none;
- width: 100%;
- height: 100%;
- }
- }
- .third-head{
- color: grey;
- padding: 8px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .third-title{
- padding-left: 8px;
- }
- .el-icon-close{
- border-radius: 8px;
- width: 32px;
- height: 32px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- &:hover{
- background-color: #eeeeee;
- }
- }
- }
- }
- .third-login{
- padding-top: 16px;
- border-top: 1px solid #ececec;
- .third-title{
- font-size: 16px;
- color: grey;
- margin-bottom: 16px;
- }
- .button-list{
- display: flex;
- gap: 16px;
- .third-button{
- transition-duration: 300ms;
- cursor: pointer;
- width: 44px;
- height: 44px;
- border-radius: 50%;
- background-color: #eeeeee;
- display: flex;
- align-items: center;
- justify-content: center;
- .icon{
- transition-duration: 300ms;
- width: 22px;
- height: 22px;
- object-fit: contain;
- }
- &:hover{
- &.wechat{
- background-color: #0E932E;
- box-shadow: 0 0 0 1px white,0 0 0 3px #0E932E;
- }
- &.google{
- background-color: #EA4335;
- box-shadow: 0 0 0 1px white,0 0 0 3px #EA4335;
- }
- &.linkin{
- background-color: #0B66C1;
- box-shadow: 0 0 0 1px white,0 0 0 3px #0B66C1;
- }
- .icon{
- filter: brightness(0) invert(1)
- }
- }
- }
- }
- }
- .title{
- height: 36px;
- font-weight: bold;
- margin-bottom: 26px;
- display: flex;
- align-items: flex-end;
- gap: 20px;
- .item{
- line-height: 1.3;
- transition-duration: 300ms;
- font-size: 27px;
- cursor: pointer;
- display: flex;
- flex-direction: column;
- align-items: center;
- color: gray;
- &::after{
- transition-duration: 300ms;
- width: 40%;
- content: '';
- display: block;
- height: 4px;
- border-radius: 2px;
- background-color: lightgray;
- }
- &.active{
- font-size: 28px;
- color: black;
- &::after{
- width: 80%;
- background-color: #2563EB;
- }
- }
- }
- }
- .button{
- font-size: 18px;
- margin-top: 48px;
- width: 400px;
- }
- .test-button{
- margin-left: unset;
- font-size: 18px;
- width: 400px;
- }
- .input{
- font-size: 16px;
- width: 400px;
- }
- .change-way {
- font-weight: 500;
- line-height: 19px;
- font-size: 15px;
- color: #409EFF;
- cursor: pointer;
- width: fit-content;
- }
- }
- }
- }
- </style>
|