| | |
| | | <div class="pam-consultant-login__title">帳號</div> |
| | | <div class="position-r mt-10"> |
| | | <input type="text" |
| | | v-model="consultantDto.account" |
| | | v-model="consultantDto.username" |
| | | class="pam-consultant-login__input" |
| | | placeholder="輸入eService帳號"> |
| | | <div class="pam-consultant-login__inputIcon text--primary cursor--pointer" |
| | | @click="recordAccount"> |
| | | <div class="pam-consultant-login__inputIcon text--primary cursor--pointer fix-chrome-click--issue" |
| | | @click="isRemember = !isRemember"> |
| | | <i :class="[isRemember ? 'icon-checkbox-1' : 'icon-checkbox','pr-5']"></i> |
| | | 記住 |
| | | </div> |
| | |
| | | <div class="pam-paragraph"> |
| | | <div class="pam-consultant-login__title "> |
| | | <div>密碼</div> |
| | | <a class="pam-consultant-login__forgot-password cursor--pointer" |
| | | <a class="pam-consultant-login__forgot-password cursor--pointer fix-chrome-click--issue" |
| | | :href="forgotPasswordLink" |
| | | target="_blank" |
| | | rel="保誠人壽"> |
| | |
| | | v-model="consultantDto.password" |
| | | class="pam-consultant-login__input" |
| | | placeholder="輸入eService密碼"> |
| | | <div class="pam-consultant-login__inputIcon cursor--pointer" |
| | | <div class="pam-consultant-login__inputIcon cursor--pointer fix-chrome-click--issue" |
| | | @click="isShowPassword = !isShowPassword"> |
| | | <i :class="[isShowPassword ? 'icon-eye-1 fs-25' : 'icon-eye' , 'text--primary']"></i> |
| | | <i :class="[isShowPassword ? 'icon-eye':'icon-eye-1 fs-25', 'text--primary']"></i> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <div class="pam-paragraph"> |
| | | <div class="pam-consultant-login__title"> |
| | | <div>驗證碼</div> |
| | | <div class="text--dark-blue fs-16 cursor--pointer" |
| | | <div class="text--dark-blue fs-16 cursor--pointer fix-chrome-click--issue" |
| | | @click="regenerateCode">重新產生</div> |
| | | </div> |
| | | <div class="pam-consultant-login__verifyBlock mt-10"> |
| | |
| | | class="pam-consultant-login__input"> |
| | | </div> |
| | | <div class="pam-consultant-login__verifyImg"> |
| | | <img src="~/assets/images/logo.png" alt="驗證碼"> |
| | | <img src="~/assets/images/logo.png" |
| | | alt="驗證碼"> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <div class="pam-consultant-login__confirmBlock pam-paragraph"> |
| | | <button class="pam-consultant-login__confirm cursor--pointer" |
| | | @click="fakeLogin">送出</button> |
| | | <button class="pam-consultant-login__confirm cursor--pointer fix-chrome-click--issue" |
| | | @click="loginWithConsultant">送出</button> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | | <script lang="ts"> |
| | | import { Vue, Component} from 'vue-property-decorator'; |
| | | import { getForgotPasswordLink , getVerificationCodeImg , login } from '~/assets/ts/api/consultant'; |
| | | import { Role } from '../../components/NavBar.vue'; |
| | | import { namespace } from 'nuxt-property-decorator'; |
| | | import { Role } from '~/assets/ts/models/enum/Role'; |
| | | import { Vue, Component } from 'vue-property-decorator'; |
| | | import { getForgotPasswordLink, getVerificationCodeImg, logInToConsultant } from '~/assets/ts/api/consultant'; |
| | | |
| | | const roleStorage = namespace('localStorage'); |
| | | @Component({ |
| | | layout: 'default' |
| | | layout: 'home' |
| | | }) |
| | | export default class ConsultantLogin extends Vue { |
| | | @roleStorage.Mutation storageIdToken!: (token: string) => void; |
| | | @roleStorage.Mutation storageRole!: (role: string) => void; |
| | | |
| | | isRemember = false; |
| | | isShowPassword = false; |
| | | forgotPasswordLink = ''; // 尚未 |
| | | imgOfVerificationCode = ''; // 尚未 |
| | | consultantDto = { |
| | | account: '', |
| | | username: '', |
| | | password: '', |
| | | verificationCode: '', |
| | | } |
| | | forgotPasswordLink = ''; |
| | | imgOfVerificationCode=''; |
| | | |
| | | mounted() { |
| | | this.getRememberUserName(); |
| | | this.regenerateCode(); |
| | | this.getLinkOfForgotPassword(); |
| | | }; |
| | | private getLinkOfForgotPassword():void{ |
| | | getForgotPasswordLink().then(link=>{ |
| | | console.log('link',link); |
| | | |
| | | private getRememberUserName(): void { |
| | | const username = localStorage.getItem('consultantUserName') |
| | | if (username) { |
| | | this.consultantDto.username = username; |
| | | this.isRemember = true; |
| | | } |
| | | } |
| | | |
| | | private getLinkOfForgotPassword(): void { |
| | | getForgotPasswordLink().then(link => { |
| | | this.forgotPasswordLink = link; |
| | | }); |
| | | }; |
| | | recordAccount(): void { |
| | | this.isRemember = !this.isRemember; |
| | | if (this.isRemember) { |
| | | console.log('sotre account'); |
| | | } |
| | | }; |
| | | regenerateCode(): void { |
| | | getVerificationCodeImg().then((imgOfbase64:any)=>{ |
| | | public regenerateCode(): void { |
| | | getVerificationCodeImg().then(imgOfbase64 => { |
| | | this.imgOfVerificationCode = imgOfbase64; |
| | | }); |
| | | }; |
| | | // loginWithConsultant():void{ |
| | | // console.log('consultantDto',this.consultantDto); |
| | | // logInToConsultant(this.consultantDto).then(res=>{ |
| | | // localStorage.setItem('roleOfState',Role.CONSULTANT); |
| | | // this.$router.push('/myAppointmentList/appointmentList'); |
| | | // }); |
| | | // } |
| | | |
| | | fakeLogin(): void { |
| | | const user = { |
| | | username: 'admin', |
| | | password: 'admin' |
| | | } |
| | | console.log('user',user); |
| | | login(user).then((res) => { |
| | | localStorage.setItem('id_token', res.data.id_token); |
| | | localStorage.setItem('roleOfState',Role.ADMIN) |
| | | public loginWithConsultant(): void { |
| | | this.recordAccount(); |
| | | |
| | | logInToConsultant(this.consultantDto).then(res => { |
| | | this.storageIdToken(res.data.id_token); |
| | | this.storageRole(Role.ADMIN); |
| | | this.$router.push('/myAppointmentList/appointmentList'); |
| | | }) |
| | | }, (error) => { |
| | | this.consultantDto.password = ''; |
| | | this.consultantDto.verificationCode = ''; |
| | | }); |
| | | } |
| | | |
| | | private recordAccount(): void { |
| | | localStorage.setItem('consultantUserName', this.isRemember ? this.consultantDto.username : ''); |
| | | }; |
| | | }; |
| | | |
| | | </script> |
| | | |
| | | <style lang="scss" |
| | | scoped> |
| | | .mt-20 { |
| | |
| | | right: 15px; |
| | | } |
| | | } |
| | | &__forgot-password{ |
| | | |
| | | &__forgot-password { |
| | | color: $PRIMARY_RED; |
| | | text-decoration:none; |
| | | text-decoration: none; |
| | | font-size: 16px; |
| | | } |
| | | |
| | | &__verifyBlock { |
| | | display: flex; |
| | | justify-content: space-between; |
| | |
| | | width: 126px; |
| | | border: 1px black solid; |
| | | height: 50px; |
| | | img{ |
| | | img { |
| | | width: 100%; |
| | | height: 100%; |
| | | } |