123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751 |
- <template>
- <div>
- <el-dialog
- :custom-class="
- activeName === 'first' ? 'custom-login-form' : 'custom-register-form'
- "
- :lock-scroll="false"
- :visible.sync="dialogVisible"
- :width="dialogWidth"
- :before-close="close">
- <el-tabs v-model="activeName">
- <el-tab-pane
- label="LOGIN"
- name="first">
- <GlobalForm
- :formData="loginData"
- :formConfig="loginFormConfig"
- :rules="loginRules"
- :submitLoading="submitLoading"
- @handleSubmit="submit"
- :showDeleteBtn="showDeleteBtn"
- :showRegisterBtn="false"
- ref="loginForm">
- <template #checkbox>
- <div class="rememberMe">
- <el-checkbox v-model="isRemember">Remember me</el-checkbox>
- <div
- @click="resetPassword"
- class="btn-forgot-pw">
- Forgot Password
- </div>
- </div>
- </template>
- </GlobalForm>
- <div
- style="
- font-size: 14px;
- color: #666;
- margin-top: 18px;
- text-align: right;
- ">
- Strictly distributors only. Proof of status will be required
- </div>
- </el-tab-pane>
- <el-tab-pane
- label="REGISTER AS A NEW USER"
- name="second">
- <div class="flex start">
- <div style="width: 50%; min-width: 50%; padding-top: 48px">
- <div
- class="flex center"
- style="margin-bottom: 55px">
- <img
- src="@/assets/img/logo.png"
- alt="PromoCollection Logo" />
- </div>
- <div class="desc-content main-desc">
- PromoCollection is Australia's fastest growing
- <br />
- promotional products supplier, 5 years in a row!
- </div>
- <p class="desc-content">
- We work exclusively with distributors to offer over 2000
- catalogue products, as well as a world of sourcing options, with
- our 60 person offshore sourcing team,to source anything you
- need!
- </p>
- <div class="desc-content">
- To apply for a login, please input the below information
- </div>
- <div
- class="signature-image flex center"
- v-if="config.configInfo?.image">
- <img
- :class="{ pointer: config.configInfo?.link }"
- @click="toSignatureLink"
- :src="config.configInfo.image"
- alt="" />
- </div>
- </div>
- <div class="flex-auto register-form">
- <el-form
- :inline="true"
- :model="registData"
- :rules="registRules"
- ref="registForm"
- label-position="top">
- <el-form-item
- v-for="item in registFormConfig"
- :class="{
- 'long-form-item': item.long,
- 'short-form-item': !item.long,
- }"
- :prop="item.prop"
- :label="item.placeholder"
- :key="item.label">
- <el-input
- v-if="item.type === 'password'"
- :type="showPassword ? 'text' : 'password'"
- v-model="registData[item.prop]">
- <i
- v-if="!showPassword"
- slot="suffix"
- class="el-input__icon iconfont"
- style="font-size: 22px; cursor: pointer; color: #666"
- @click="showPassword = true"
- ></i
- >
- <i
- v-else
- slot="suffix"
- class="el-input__icon iconfont"
- style="font-size: 22px; cursor: pointer; color: #666"
- @click="showPassword = false"
- ></i
- >
- </el-input>
- <el-input
- :id="item.prop + '_input'"
- @change="$e => onInputChange($e, item.prop)"
- v-else
- v-model="registData[item.prop]"></el-input>
- </el-form-item>
- </el-form>
- <div class="flex center">
- <el-button
- :loading="submitLoading"
- @click="checkRegisterForm"
- >REGISTER</el-button
- >
- </div>
- <p class="desc-content">* required</p>
- </div>
- </div>
- </el-tab-pane>
- </el-tabs>
- </el-dialog>
- <resetPasswordDialog
- ref="resetPasswordDialog"
- @openLoginDialog="openLoginDialog" />
- <dialog-XX-success
- :visible.sync="xxContentVisible"
- :content="xxContent"></dialog-XX-success>
- </div>
- </template>
- <script>
- import { mapState, mapMutations } from 'vuex'
- import GlobalForm from '../components/PcGlobalForm.vue'
- import dialogXXSuccess from './DIalogXXSuccess.vue'
- const Base64 = require('js-base64').Base64
- export default {
- name: 'LoginDialog',
- components: { GlobalForm, 'dialog-XX-success': dialogXXSuccess },
- data() {
- return {
- showPassword: false,
- xxContentVisible: false,
- xxContent: 'success',
- isRemember: false,
- showDeleteBtn: false,
- activeName: 'first',
- submitLoading: false,
- loginData: {
- email: '',
- password: '',
- },
- registData: {},
- // 表单配置
- loginFormConfig: [
- {
- autoInput: true,
- prop: 'email',
- type: 'input',
- placeholder: 'User Name',
- },
- {
- prop: 'password',
- type: 'password',
- placeholder: 'Password',
- },
- {
- type: 'slot',
- slotName: 'checkbox',
- },
- ],
- registFormConfig: [
- {
- long: true,
- prop: 'email',
- type: 'input',
- placeholder: 'Email',
- },
- {
- long: true,
- prop: 'password',
- type: 'password',
- placeholder: 'Password',
- },
- {
- long: true,
- prop: 'confirm_password',
- type: 'password',
- placeholder: 'Comfirm Password',
- },
- {
- prop: 'contacts',
- type: 'input',
- placeholder: 'First Name',
- },
- {
- prop: 'last_name',
- type: 'input',
- placeholder: 'Last Name',
- },
- {
- long: true,
- prop: 'company',
- type: 'input',
- placeholder: 'Company Name',
- },
- {
- prop: 'phone',
- type: 'input',
- placeholder: 'Phone No',
- },
- {
- prop: 'url',
- type: 'input',
- placeholder: 'Website',
- },
- {
- long: true,
- prop: 'address',
- type: 'input',
- placeholder: 'Address',
- },
- {
- prop: 'state',
- type: 'input',
- placeholder: 'State',
- },
- {
- prop: 'postcode',
- type: 'input',
- placeholder: 'Post Code',
- },
- ],
- // 表单规则
- loginRules: {
- email: [
- {
- required: true,
- message: 'Please enter the correct email',
- trigger: 'blur',
- },
- ],
- password: [
- {
- required: true,
- message: 'The password length only allows 6-16 bits',
- trigger: 'blur',
- min: 6,
- max: 16,
- },
- ],
- },
- registRules: {
- email: [
- {
- required: true,
- message: 'Please enter your email address',
- trigger: 'blur',
- },
- ],
- password: [
- {
- required: true,
- message: 'The password length only allows 6-16 bits',
- trigger: 'blur',
- min: 6,
- max: 16,
- },
- ],
- confirm_password: [
- {
- required: true,
- message: 'The password length only allows 6-16 bits',
- trigger: 'blur',
- min: 6,
- max: 16,
- },
- ],
- company: [
- {
- required: true,
- message: 'Please enter your company name',
- trigger: 'blur',
- },
- ],
- contacts: [
- {
- required: true,
- message: 'Please enter your contact person',
- trigger: 'blur',
- },
- ],
- last_name: [
- {
- required: true,
- message: 'Please enter your contact person',
- trigger: 'blur',
- },
- ],
- phone: [
- {
- required: true,
- message: 'Please enter your phone number',
- trigger: 'blur',
- },
- ],
- },
- autoComplete: null,
- // 记录谷歌地图API选择地点后拿到的地址名. 这个不能直接更新到registeData上, 不然输入框内容会再次变化.
- selectAddress: '',
- }
- },
- computed: {
- ...mapState(['dialogVisible', 'config']),
- dialogWidth() {
- return this.activeName === 'first' ? '506px' : '1108px'
- },
- },
- watch: {
- dialogVisible(value) {
- if (value) {
- document.addEventListener('keydown', this.onEnterClick)
- } else {
- document.removeEventListener('keydown', this.onEnterClick)
- }
- },
- activeName() {
- if (this.activeName === 'second' && this.autoComplete === null) {
- if (window.google) {
- this.initGoogleMapAutoComplete()
- this.getAddrByLocation()
- } else {
- setTimeout(() => {
- this.initGoogleMapAutoComplete()
- this.getAddrByLocation()
- }, 1500)
- }
- }
- },
- },
- mounted() {
- this.getCookie()
- },
- methods: {
- ...mapMutations(['closeDialog', 'openDialog']),
- onEnterClick(e) {
- if (e.keyCode === 13) {
- console.log('enter')
- let target = this.$refs.loginForm
- if (this.activeName === 'first') {
- // do nothing. login form
- }
- if (this.activeName === 'second') {
- target = this.$refs.registForm
- }
- if (typeof target.submit === 'function') {
- target.submit()
- }
- }
- },
- checkRegisterForm() {
- this.$refs.registForm.validate(valid => {
- if (valid) {
- this.submit()
- }
- })
- },
- submit() {
- if (this.activeName === 'first') {
- if (this.isRemember) {
- const password = Base64.encode(this.loginData.password)
- this.setCookie(this.loginData.email, password, 7)
- } else {
- this.setCookie('', '', -1)
- }
- this.login()
- } else if (this.activeName === 'second') {
- this.regist()
- }
- },
- login() {
- this.$store
- .dispatch('login', this.loginData)
- .then(res => {
- if (res.code == 1) {
- setTimeout(() => {
- this.closeDialog()
- }, 200)
- this.xxContentVisible = true
- this.xxContent = 'Login Successful'
- this.submitLoading = false
- // this.$confirm("Login Successful", {
- // confirmButtonText: "OK",
- // confirmButtonClass: 'confirmBtn',
- // showCancelButton: false,
- // showClose: false,
- // type: "success",
- // center: true,
- // lockScroll: false,
- // }).then(() => {
- // });
- } else if (res.code == 10100) {
- this.$confirm(res.msg, {
- confirmButtonText: 'OK',
- showCancelButton: false,
- type: 'error',
- center: true,
- })
- }
- })
- .catch(() => {
- this.closeDialog()
- })
- },
- regist() {
- this.submitLoading = true
- const formData = Object.assign({}, this.registData)
- if (this.selectAddress && this.selectAddress.length) {
- formData.address = this.selectAddress
- }
- this.$axios({
- url: '/uk-api/uk/register',
- method: 'post',
- data: formData,
- })
- .then(res => {
- if (res.code == 1) {
- this.closeDialog()
- this.submitLoading = false
- this.xxContentVisible = true
- this.xxContent =
- "We've received your login request. Someone will be in touch shortly to confirm."
- this.registerEmail()
- }
- })
- .catch(e => {
- const res = e.response.data
- if (res.code === 10100) {
- this.$confirm(res.msg + ', please click OK to jump to login.', {
- confirmButtonText: 'OK',
- showCancelButton: false,
- type: 'error',
- center: true,
- }).then(() => {
- this.submitLoading = false
- this.activeName = 'first'
- })
- }
- })
- },
- registerEmail() {
- this.$axios
- .get('/uk-api/uk/register_email?email=' + this.registData.email)
- .then(res => {})
- .catch(error => {
- this.$message.error(error.response.data.msg)
- })
- },
- close() {
- this.closeDialog()
- this.registData = {}
- },
- resetPassword() {
- this.closeDialog()
- this.$refs.resetPasswordDialog.resetDialogVisible = true
- },
- openLoginDialog() {
- this.openDialog()
- },
- // 设置cookie
- setCookie(email, password, days) {
- const date = new Date()
- date.setTime(date.getTime() + 24 * 60 * 60 * 1000 * days)
- document.cookie =
- 'email' + '=' + email + ';path=/;expires=' + date.toGMTString()
- document.cookie =
- 'password' + '=' + password + ';path=/;expires=' + date.toGMTString()
- },
- // 读取cookie 将用户名和密码回显到input框中
- getCookie() {
- if (document.cookie.length > 0 && this.$cookies.get('can-use-cookie')) {
- const arr = document.cookie.split('; ')
- for (let i = 0; i < arr.length; i++) {
- const arr2 = arr[i].split('=')
- if (arr2[0] === 'email') {
- this.loginData.email = arr2[1]
- } else if (arr2[0] === 'password') {
- this.loginData.password = Base64.decode(arr2[1])
- this.isRemember = true
- }
- }
- }
- },
- toSignatureLink() {
- const link = this.config.configInfo?.link || ''
- if (link) {
- window.open(link, '_blank')
- }
- },
- initGoogleMapAutoComplete() {
- // console.log(window.google.maps, 'maps')
- // https://developers.google.com/maps/documentation/javascript/place-autocomplete
- this.autoComplete = new window.google.maps.places.Autocomplete(
- document.getElementById('address_input'),
- {
- types: ['address'],
- componentRestrictions: {
- country: ['AU'],
- },
- // 如果不知道需要什么字段, 可以查文档, 或给'all'或不传fields参数, 然后从返回结果里面找出需要数据的字段名, 填到这里
- fields: [
- 'address_components',
- 'place_id',
- 'name',
- 'formatted_address',
- ],
- }
- )
- this.autoComplete.addListener('place_changed', this.onPlaceChange)
- },
- onPlaceChange() {
- const data = this.autoComplete.getPlace()
- if (Array.isArray(data.address_components)) {
- data.address_components.forEach(i => {
- if (i.types.includes('postal_code')) {
- this.$set(this.registData, 'postcode', i.long_name || i.short_name)
- }
- if (i.types.includes('administrative_area_level_1')) {
- this.$set(this.registData, 'state', i.short_name || i.long_name)
- }
- })
- }
- this.selectAddress = data.name || this.registData.address
- },
- onInputChange(value, attr) {
- if (attr === 'address') {
- // 地址输入变更时, 清空这个值, 避免手动输入地址又不选的时候, 这个变量保存了上一次选地址时留下的数据.
- this.selectAddress = ''
- }
- },
- getAddrByLocation() {
- if (navigator.geolocation) {
- let location = {
- lat: 0,
- lng: 0,
- }
- navigator.geolocation.getCurrentPosition(
- position => {
- location = {
- lat: position.coords.latitude,
- lng: position.coords.longitude,
- }
- console.log(location, 'position')
- const geocoder = new window.google.maps.Geocoder()
- geocoder.geocode({ location }).then(response => {
- console.log(response, 'response')
- if (response.results?.length) {
- response.results[0].address_components.forEach(i => {
- if (i.types.includes('postal_code')) {
- this.$set(
- this.registData,
- 'postcode',
- i.long_name || i.short_name
- )
- }
- if (i.types.includes('administrative_area_level_1')) {
- this.$set(
- this.registData,
- 'state',
- i.short_name || i.long_name
- )
- }
- if (i.types.includes('route')) {
- this.$set(
- this.registData,
- 'address',
- i.short_name || i.long_name
- )
- }
- this.selectAddress = i.short_name || i.long_name
- })
- }
- })
- },
- error => {
- console.log(error, 'get location error')
- }
- )
- }
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- ::v-deep .custom-login-form {
- margin: 15vh auto 0 !important;
- }
- ::v-deep .custom-register-form {
- margin: 6vh auto 0 !important;
- }
- :deep(.el-dialog__header) {
- border-radius: 3px;
- border-top: 4px solid #00213b;
- position: relative;
- padding: 0px 20px;
- .el-dialog__headerbtn {
- position: absolute;
- top: -41px;
- right: 0;
- .el-icon-close:before {
- content: '\e78d';
- color: #fff;
- font-size: 22px;
- }
- }
- }
- :deep(.el-dialog__body) {
- padding-top: 20px;
- padding-bottom: 17px;
- }
- :deep(.el-tabs__nav-scroll) {
- display: flex;
- justify-content: space-around;
- font-family: Proxima Nova;
- .el-tabs__nav.is-top {
- display: flex;
- justify-content: space-around;
- align-items: center;
- .el-tabs__item.is-top {
- font-family: Proxima Nova;
- font-weight: bold;
- color: #aaacb1;
- }
- .el-tabs__item.is-top.is-active {
- color: #00bfe2;
- }
- .el-tabs__active-bar.is-top {
- background-color: #00bfe2;
- }
- }
- .el-tabs__item {
- padding: 0px 80px;
- }
- }
- .el-tab-pane {
- .desc-content {
- box-sizing: border-box;
- word-break: break-word;
- width: 100%;
- text-align: center;
- font-size: 14px;
- line-height: 20px;
- color: #4a596c;
- padding: 0 36px;
- margin: 8px auto 10px;
- }
- .main-desc {
- font-size: 22px;
- line-height: 30px;
- padding-left: 5px;
- }
- .signature-image {
- margin-top: 60px;
- img {
- width: 444px;
- height: auto;
- }
- .pointer {
- cursor: pointer;
- }
- }
- }
- .rememberMe {
- display: flex;
- justify-content: space-between;
- font-style: italic;
- font-size: 12px;
- text-decoration: underline;
- .btn-forgot-pw {
- cursor: pointer;
- font-weight: 900;
- }
- }
- .msg-div {
- text-align: center;
- padding: 25px 0 33px;
- img {
- width: 40px;
- }
- .title {
- font-weight: bold;
- font-size: 26px;
- margin: 14px 0 22px;
- color: #00213b;
- }
- .text {
- font-size: 16px;
- margin: 0 0 20px;
- color: #666;
- }
- .el-button--primary {
- //需要更改的按钮类型 type='primary'
- background: #00213b !important;
- border-color: #00213b !important;
- }
- }
- ::v-deep .register-form {
- label {
- line-height: 24px;
- padding-bottom: 0;
- color: #4a596c;
- }
- .long-form-item {
- width: 96%;
- }
- .short-form-item {
- width: 47%;
- }
- .el-input__inner {
- border-color: #828282;
- }
- .el-button {
- color: #fff;
- background-color: #e90000;
- }
- }
- </style>
|