| | |
| | | <el-row type="flex" class="pt-30"> |
| | | <el-button |
| | | :class="{ 'active': connectDevice === 'MOBILE'}" |
| | | @click="connectDevice = 'MOBILE'">手機號碼</el-button> |
| | | @click="connectDevice = 'MOBILE'; regenerateImgOfVerification()">手機號碼</el-button> |
| | | <el-button |
| | | :class="{ 'active': connectDevice === 'EMAIL'}" |
| | | @click="connectDevice = 'EMAIL'">Email</el-button> |
| | | @click="connectDevice = 'EMAIL'; regenerateImgOfVerification()">Email</el-button> |
| | | </el-row> |
| | | </div> |
| | | |
| | |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="pam-paragraph" v-if="(!showPhoneOtpCodeField && !showEmailVerifyField)"> |
| | | <div class="pam-consultant-login__title"> |
| | | <div>圖型驗證碼 <span class="text--dark-blue fs-16">(區分大小寫)</span></div> |
| | | <div class="text--primary fs-16 cursor--pointer fix-chrome-click--issue" |
| | | style="margin-left: 16px" |
| | | @click="regenerateImgOfVerification">重新產生</div> |
| | | </div> |
| | | <div class="pam-consultant-login__verifyBlock mt-10"> |
| | | <div class="w-55"> |
| | | <input type="text" |
| | | v-model="verificationCode" |
| | | maxlength="4" |
| | | class="pam-consultant-login__input"> |
| | | </div> |
| | | <div class="pam-consultant-login__verifyImg"> |
| | | <img :src="imgSrc" alt="驗證碼"> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- mobile 驗證碼 --> |
| | | <template v-if="connectDevice === 'MOBILE'"> |
| | | <div v-show="showPhoneOtpCodeField"> |
| | | <el-row type="flex" justify="space-between"> |
| | | <div class="mdTxt">輸入驗證碼</div> |
| | | <div class="mdTxt">輸入 OTP 驗證碼</div> |
| | | <div class="otp-count-timer"> |
| | | {{counterTime(otpCounterSec)}} |
| | | </div> |
| | |
| | | 'is-invalid': !otpCode |
| | | }" |
| | | v-model="otpCode" |
| | | placeholder="請輸入驗證碼" |
| | | placeholder="請輸入 OTP 驗證碼" |
| | | > |
| | | </el-row> |
| | | <div class="error mt-5 mb-10"> |
| | | <span v-show="otpCounterSec === 0">驗證碼已過期,請重發驗證碼</span> |
| | | <span v-show="otpCounterSec === 0">OTP 驗證碼已過期,請重發 OTP 驗證碼</span> |
| | | </div> |
| | | |
| | | <el-row> |
| | |
| | | @click="resentOtp('MOBILE')" |
| | | icon="icon-arrow" |
| | | > |
| | | 重發驗證碼<span |
| | | 重發 OTP 驗證碼<span |
| | | class="pam-field-title__hint pl-5" |
| | | v-if="otpResendCounter !== 0" |
| | | >({{ otpResendCounter }})</span> |
| | | </el-button> |
| | | |
| | | </el-row> |
| | | </div> |
| | | |
| | | <el-row> |
| | | <el-button |
| | | v-if="onPhoneVerifyStep === 'APPLY_OTP'" |
| | | :disabled="!phoneNumber || !phoneValid" |
| | | :disabled="!phoneNumber || !phoneValid || verificationCode.length !== 4" |
| | | @click="applyOtpVerification('MOBILE')" |
| | | icon="icon-arrow" |
| | | > |
| | | 發送驗證碼 |
| | | 發送 OTP 驗證碼 |
| | | </el-button> |
| | | </el-row> |
| | | |
| | |
| | | <template v-if="connectDevice === 'EMAIL'"> |
| | | <el-row v-show="showEmailVerifyField"> |
| | | <el-row type="flex" justify="space-between"> |
| | | <div class="mdTxt">輸入驗證碼</div> |
| | | <div class="mdTxt">輸入 OTP 驗證碼</div> |
| | | <div class="otp-count-timer"> |
| | | {{counterTime(emailCounterSec)}} |
| | | </div> |
| | |
| | | 'is-invalid': !emailOtpCode |
| | | }" |
| | | v-model="emailOtpCode" |
| | | placeholder="請輸入驗證碼" |
| | | placeholder="請輸入 OTP 驗證碼" |
| | | > |
| | | </el-row> |
| | | <div class="error mt-5 mb-10"> |
| | | <span v-show="emailCounterSec === 0">驗證碼已過期,請重發驗證碼</span> |
| | | <span v-show="emailCounterSec === 0">OTP 驗證碼已過期,請重發 OTP 驗證碼</span> |
| | | </div> |
| | | |
| | | <el-button |
| | |
| | | icon="icon-arrow" |
| | | @click="resentOtp('EMAIL')" |
| | | > |
| | | 重發驗證碼<span |
| | | 重發 OTP 驗證碼<span |
| | | v-if="emailResendCounter !== 0" |
| | | class="pam-field-title__hint pl-5" |
| | | class="pam-`field-title__hint pl-5" |
| | | >({{ emailResendCounter }})</span> |
| | | </el-button> |
| | | </el-row> |
| | | |
| | | <el-row v-show="!showEmailVerifyField"> |
| | | <el-row> |
| | | <el-button |
| | | :disabled="!email || !emailValid" |
| | | v-if="onEmailVerifyResendStatus === 'APPLY_OTP'" |
| | | :disabled="!email || !emailValid || verificationCode.length !== 4" |
| | | @click="applyOtpVerification('EMAIL')" |
| | | icon="icon-arrow" |
| | | > |
| | | 發送驗證碼 |
| | | 發送 OTP 驗證碼 |
| | | </el-button> |
| | | </el-row> |
| | | </template> |
| | |
| | | class="mdTxt pam-register-dialog__contract" |
| | | ref="contract" |
| | | @scroll="detectContractReadStatus"> |
| | | <h3>蒐集個人資料告知事項</h3> |
| | | <h3>保誠人壽保險股份有限公司蒐集個人資料告知事項</h3> |
| | | <p class="mt-10"> |
| | | 遵守個人資料保護法規定,在您提供個人資料予本處前,依法告知下列事項: |
| | | 保誠人壽保險股份有限公司(下稱「本公司」)依據個人資料保護法(以下稱個資法)第六條第二項、第八條第一項規定,向台端告知下列事項,請台端詳閱: |
| | | <p> |
| | | |
| | | <p class="mt-10"> |
| | | 一、獲取您下列個人資料類別:姓名、出生年月日、國民身分證統一編號、性別、職業、教育、 |
| | | 連絡方式(包括但不限於電話號碼、E-MAIL、居住或工作地址)等,或其他得以直接 |
| | | 或間接識別您個人之資料。 |
| | | 一、個人資料蒐集之目的(參照法務部頒佈之「個資法之特定目的及個人資料之類別」):身分確認 |
| | | 人身保險 (001)、行銷(040)、金融服務業依法令規定及金融監理需要,所為之蒐集處理及利用(059)、契約、類似契約或其他法律關係事務(069)、消費者、客戶管理與服務(090)、網路購物及其他電子商務服務(148)、調查、統計與研究分析(157)、其他經營合於營業登記項目或組織章程所定之業務(181)。 |
| | | <p> |
| | | |
| | | <p class="mt-10"> |
| | | 二、本處將依個人資料保護法及相關法令之規定下,依本處隱私權保護政策,蒐集、 |
| | | 處理及利用您的個人資料。 |
| | | 二、蒐集之個人資料:真實姓名、手機號碼、電子郵件信箱及其他基於本平台媒合顧問及預約諮詢服務之需要所提供之個人資料。 |
| | | <p> |
| | | |
| | | <p class="mt-10"> |
| | | 三、本處將於蒐集目的之存續期間合理利用您的個人資料。 |
| | | 三、個人資料利用之期間、地區、對象、方式: |
| | | (一)期間:因前述目的及執行業務所必須及依法令規定應為保存之期間。 |
| | | (二)地區:個人資料利用對象所在之地區。 |
| | | (三)對象:本公司、依法有調查權機關或金融監理機關及本平台合作保經代公司(範圍限於 台端選擇之顧問所隸屬之公司)。 |
| | | (四)方式:合於法令規定之利用方式。 |
| | | </p> |
| | | |
| | | <p class="mt-10"> |
| | | 四、除蒐集之目的涉及國際業務或活動外,本處僅於中華民國領域內利用您的個人資料。 |
| | | 四、依據個資法第三條規定, 台端就本公司保有 台端之個人資料得行使之權利及方式: |
| | | (一)得向本公司行使之權利: |
| | | 向本公司查詢、請求閱覽或請求製給複製本。 |
| | | 向本公司請求補充或更正。 |
| | | 向本公司請求停止蒐集、處理或利用及請求刪除。 |
| | | (二)行使權利之方式: 台端得撥打本公司免費客戶服務專線: 0809-0809-68 行使上述權利。(專員接聽時間 : 週一 ~ 週五 08:00-20:00 及週六、日及例假日 09:00-17:30;語音服務:週一-週日24小時)。 |
| | | </p> |
| | | |
| | | <p class="mt-10"> |
| | | 五、本處將於原蒐集之特定目的、本次以外之產業之推廣、宣導及輔導、以及其他公務機關請求行政協助之目的範圍內,合理利用您的個人資料。 |
| | | 五、台端可自行決定是否提供個人資料予本公司, 台端於勾選同意後並於本平台提供個人資料時,視為已同意前述事項,惟若 台端不同意提供或未提供正確之資訊,將導致無法與使用本平台進行顧問媒合與預約諮詢等服務。 |
| | | </p> |
| | | |
| | | <p class="mt-10"> |
| | | 六、您可依個人資料保護法第 3 條規定,就您的個人資料向本處行使之下列權利: |
| | | (一) 查詢或請求閱覽。 |
| | | (二) 請求製給複製本。 |
| | | (三) 請求補充或更正。 |
| | | (四) 請求停止蒐集、處理及利用。 |
| | | (五) 請求刪除。 |
| | | 您因行使上述權利而導致對您的權益產生減損時,本處不負相關賠償責任。另依 |
| | | 個人資料保護法第 14 條規定,本處得酌收行政作業費用。 |
| | | </p> |
| | | |
| | | <p class="mt-10"> |
| | | 七、若您未提供正確之個人資料,本處將無法為您提供特定目的之相關業務。 |
| | | </p> |
| | | |
| | | <p class="mt-10"> |
| | | 八、本處因業務需要而委託其他機關處理您的個人資料時,本處將會善盡監督之責。 |
| | | </p> |
| | | |
| | | <p class="mt-10"> |
| | | 九、您瞭解此一同意書符合個人資料保護法及相關法規之要求,且同意本處留存此同 |
| | | 意書,供日後取出查驗。 |
| | | 個人資料之同意提供 |
| | | 一、本人已充分知悉貴處上述告知事項。 |
| | | 二、本人同意貴處蒐集、處理、利用本人之個人資料,以及其他公務機關請求行政協 |
| | | 助目的之提供。 |
| | | </p> |
| | | </div> |
| | | </el-row> |
| | | <el-row class="pt-30"> |
| | |
| | | @roleStorage.Mutation |
| | | storageRole!: (role:string) => void; |
| | | |
| | | @roleStorage.Mutation |
| | | storageUserInfo!: (userInfo: RegisterInfo) => void; |
| | | |
| | | @Ref('contract') readonly contract!: any; |
| | | |
| | | connectDevice: 'MOBILE' | 'EMAIL' = 'MOBILE'; |
| | |
| | | emailOtpCode = ''; |
| | | emailResendInterval: any; |
| | | emailOtpIndexKey!: string; |
| | | |
| | | verificationCode = ''; |
| | | imgSrc = ''; |
| | | |
| | | autoRedirectCounter = 3; |
| | | autoRedirectInterval: any; |
| | |
| | | |
| | | beforeRouteEnter (to, from, next) { |
| | | next(vm => { |
| | | console.log(from.path, 'beforeRouteEnter'); |
| | | vm.previousPath = from.path; |
| | | }) |
| | | } |
| | |
| | | mounted() { |
| | | this.parsePhoneOtpTimeFromStorage(); |
| | | this.parseEmailOtpTimeFromStorage(); |
| | | this.regenerateImgOfVerification(); |
| | | } |
| | | |
| | | private parsePhoneOtpTimeFromStorage() { |
| | |
| | | } |
| | | |
| | | ////////////////////////////////////////////////////////// |
| | | |
| | | regenerateImgOfVerification(): void { |
| | | loginService.getImgOfVerification().then( imgOfBase64 => { |
| | | this.imgSrc = imgOfBase64; |
| | | this.verificationCode = ''; |
| | | } |
| | | ); |
| | | }; |
| | | |
| | | //////////////////// 登入 |
| | | login() { |
| | |
| | | private redirect() { |
| | | const backToPrevious = ['questionnaire', 'myConsultantList']; |
| | | const find = backToPrevious.findIndex(item => this.previousPath.includes(item)); |
| | | console.log(this.previousPath, find, 'redirect'); |
| | | find > -1 ? this.$router.go(-1) : this.$router.push('/'); |
| | | } |
| | | |
| | |
| | | loginType: isMobile ? 'SMS' : 'EMAIL', |
| | | account: isMobile ? this.phoneNumber : this.email, |
| | | } |
| | | loginService.sendOtp(loginInfo).then(otpInfo => { |
| | | loginService.sendOtp(loginInfo, this.verificationCode).then(otpInfo => { |
| | | if (otpInfo.success) { |
| | | this.storageOtpTime(type, otpInfo); |
| | | this.startOtpSetting(type); |
| | |
| | | this.emailCounterSec -= 1; |
| | | if (this.emailResendCounter !== 0) { |
| | | this.emailResendCounter -= 1; |
| | | if (this.emailResendCounter === 0) { |
| | | // this.regenerateImgOfVerification(); |
| | | } |
| | | } |
| | | if (this.emailCounterSec === 0) { |
| | | clearInterval(this.emailResendInterval); |
| | |
| | | this.otpCounterSec -= 1; |
| | | if (this.otpResendCounter !== 0) { |
| | | this.otpResendCounter -= 1; |
| | | if (this.otpResendCounter === 0) { |
| | | // this.regenerateImgOfVerification(); |
| | | } |
| | | } |
| | | if (this.otpCounterSec === 0) { |
| | | clearInterval(this.otpInterval) |
| | | clearInterval(this.otpInterval); |
| | | } |
| | | }, 1000) |
| | | } |
| | | |
| | | resentOtp(type: string) { |
| | | this.resetOtpSetting(type); |
| | | this.applyOtpVerification(type); |
| | | } |
| | | |
| | | deleteOtpInfo(type: string) { |
| | |
| | | this.emailOtpCode = ''; |
| | | } |
| | | this.removeOtpTime(); |
| | | this.regenerateImgOfVerification(); |
| | | } |
| | | |
| | | private resetOtpSetting(type: string) { |
| | |
| | | clearInterval(this.otpInterval); |
| | | this.otpResendCounter = 30; |
| | | this.otpCounterSec = 300; |
| | | this.onPhoneVerifyStep = 'APPLY_OTP'; |
| | | } else { |
| | | clearInterval(this.emailResendInterval); |
| | | this.emailResendCounter = 30; |
| | | this.emailCounterSec = 300; |
| | | this.onEmailVerifyResendStatus = 'APPLY_OTP'; |
| | | } |
| | | } |
| | | |
| | |
| | | }, 1000); |
| | | break; |
| | | default: |
| | | messageBoxService.showErrorMessage('',error); |
| | | const defaultErrorMsg = OtpErrorCode[error.response?.data?.title] |
| | | messageBoxService.showErrorMessage('',defaultErrorMsg); |
| | | break; |
| | | } |
| | | } |
| | | |
| | | private storagePhoneOrEmail(registerInfo:RegisterInfo):void{ |
| | | const info = {...registerInfo, time: new Date()} |
| | | localStorage.setItem('userInfo',JSON.stringify(info)); |
| | | // storageUserInfo!: (userInfo: RegisterInfo) => void; |
| | | this.storageUserInfo(info); |
| | | // localStorage.setItem('userInfo',JSON.stringify(info)); |
| | | } |
| | | |
| | | private removeOtpTime() { |
| | |
| | | font-size: 16px; |
| | | } |
| | | } |
| | | .pam-consultant-login { |
| | | margin: auto; |
| | | width: 336px; |
| | | font-size: 20px; |
| | | color: $PRIMARY_BLACK; |
| | | |
| | | &__header { |
| | | text-align: center; |
| | | font-size: 24px; |
| | | font-weight: bold; |
| | | letter-spacing: 1.2; |
| | | color: $PRIMARY_BLACK; |
| | | } |
| | | |
| | | &__title { |
| | | display: flex; |
| | | // justify-content: space-between; |
| | | align-items: center; |
| | | } |
| | | |
| | | &__input { |
| | | width: 100%; |
| | | outline: 0; |
| | | border: 1px solid #CCCCCC; |
| | | border-radius: 10px; |
| | | font-size: 20px; |
| | | height: 50px; |
| | | padding: 10px 90px 10px 15px; |
| | | overflow: auto; |
| | | box-sizing: border-box; |
| | | -webkit-box-sizing: border-box; |
| | | -moz-box-sizing: border-box; |
| | | |
| | | &Icon { |
| | | position: absolute; |
| | | display: flex; |
| | | align-items: center; |
| | | top: 15px; |
| | | right: 15px; |
| | | } |
| | | } |
| | | |
| | | &__forgot-password { |
| | | color: $PRIMARY_RED; |
| | | text-decoration: none; |
| | | font-size: 16px; |
| | | } |
| | | |
| | | &__verifyBlock { |
| | | display: flex; |
| | | // justify-content: space-between; |
| | | } |
| | | |
| | | &__verifyImg { |
| | | margin-left: 8px; |
| | | width: 126px; |
| | | height: 50px; |
| | | border:1px #cccccc solid; |
| | | img { |
| | | width: 100%; |
| | | height: 100%; |
| | | } |
| | | } |
| | | |
| | | &__confirmBlock { |
| | | display: flex; |
| | | justify-content: center; |
| | | } |
| | | |
| | | &__confirm { |
| | | color: $PRIMARY_WHITE; |
| | | width: 80px; |
| | | height: 50px; |
| | | border-radius: 30px; |
| | | border: 1px solid $LIGHT_GREY; |
| | | background-color: $PRIMARY_RED; |
| | | } |
| | | } |
| | | </style> |