| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <div class="login">
- <div class="page-part">
- <mt-field auto-complete="off" placeholder="手机号/邮箱/账号ID" v-model="login.username" @blur.native.capture="codeCount"></mt-field>
- </div>
- <div class="page-part">
- <mt-field placeholder="密码" v-model="login.password" type="password"></mt-field>
- <template>
- <p class="passwd"><a href="/reset/forgetPasswordValidationAccount" class="rgba">忘记密码?</a></p>
- </template>
- </div>
- <template v-if="showCheckCode">
- <div class="page-part">
- <mt-field placeholder="验证码" v-model="login.captcha">
- <img :src="imgSrc" height="45px" width="100px" @click="getCode">
- </mt-field>
- </div>
- </template>
- <div class="page-part">
- <mt-button size="large" type="primary" @click="checkLogin(true)">登录</mt-button>
- </div>
- <div class="login-btn">
- <p>还没有优软云账号?</p>
- <mt-button size="large" plain type="primary" @click="jump">立即注册</mt-button>
- </div>
- <mt-popup v-model="popupVisible" position="right" class="mint-popup" :modal="false">
- <ul style="height:100vh;overflow-y:auto">
- <li class="listitem itemgreen">选择您要登录的公司:</li>
- <li v-for="item in enterprise" class="listitem" @click="selectEnterprise(false, item.id)">{{ item.name }}</li>
- </ul>
- </mt-popup>
- </div>
- </template>
- <script>
- export default {
- name: 'loginMobile',
- data () {
- return {
- loading: false,
- popupVisible: false,
- imgSrc: '',
- showCheckCode: false,
- login: {
- username: '',
- password: '',
- spaceUU: '',
- captcha: ''
- },
- appId: '',
- returnUrl: '',
- baseUrl: ''
- }
- },
- mounted () {
- this.$nextTick(() => {
- this.getUrl()
- })
- },
- computed: {
- enterprise () {
- return this.$store.state.login.chooseRegisterEnterprise.choose.data
- }
- },
- methods: {
- selectEnterprise (flag, type) {
- this.login.spaceUU = type
- this.popupVisible = flag
- this.toLogin(flag)
- },
- jump () {
- if (this.appId === 'mall') {
- window.location.href = `/register/personalRegistration?appId=${this.appId}&returnUrl=${this.returnUrl}`
- } else {
- window.location.href = `/register/enterpriseRegistration?appId=${this.appId}&returnUrl=${this.returnUrl}`
- }
- },
- getUrl () {
- this.appId = this.$store.state.option.appId
- this.returnUrl = this.$store.state.option.returnUrl
- this.baseUrl = this.$store.state.option.baseUrl
- },
- getCode () {
- this.imgSrc = '/sso/login/checkCode?timestamp=' + (new Date()).valueOf()
- },
- checkLogin (flag) {
- if (!this.login.username) {
- this.$toast({message: '请填写账号', iconClass: 'el-icon-warning'})
- } else if (!this.login.password) {
- this.$toast({message: '请填写密码', iconClass: 'el-icon-warning'})
- } else {
- this.toLogin(flag)
- }
- },
- codeCount () {
- this.$http.get(`/sso/login/getPwdErrorCount`, {params: {username: this.login.username}})
- .then(response => {
- if (response.data.success) {
- let count = response.data.content || ''
- if (count >= 3 && count < 5) {
- this.showCheckCode = true
- this.getCode()
- this.$toast({
- message: '当前已输错密码' + count + '次,若达到5次今日将无法登陆',
- iconClass: 'el-icon-warning'
- })
- } else if (count === 5) {
- this.$toast({
- message: '密码错误次数已达上限,今日无法登陆',
- iconClass: 'el-icon-warning'
- })
- }
- } else {
- this.$toast({
- message: response.data.errMsg,
- iconClass: 'el-icon-warning'
- })
- }
- }).catch(err => {
- this.$toast({
- message: err.errMsg,
- iconClass: 'el-icon-warning'
- })
- })
- },
- toLogin (flag) {
- this.$indicator.open('登录中...')
- let param = new FormData()
- param.append('username', this.login.username)
- param.append('password', this.login.password)
- param.append('captcha', this.login.captcha)
- param.append('appId', this.appId)
- param.append('returnUrl', this.returnUrl)
- param.append('baseUrl', this.baseUrl)
- param.append('spaceUU', this.login.spaceUU)
- let config = {
- headers: {'Content-Type': 'multipart/form-data'}
- }
- this.$http.post('/sso/login', param, config)
- .then(response => {
- this.$indicator.close()
- if (response.data.success) {
- // 弹框用户选择企业
- if (response.data.content.spaces) {
- this.$store.commit('login/chooseRegisterEnterprise/GET_ENTERPRISE_SUCCESS', response.data.content.spaces)
- this.popupVisible = flag
- } else if (response.data.content.loginUrls) {
- // 遍历登录url循环让各个应用登录
- let param = response.data.content.data
- let a = ''
- for (let n in param) {
- a += (n + '=' + param[n] + '&')
- }
- for (let i in response.data.content.loginUrls) {
- this.$jsonp(`${response.data.content.loginUrls[i]}?` + a.substr(0, a.length - 1), function (err) {
- if (err) throw err
- })
- }
- this.$indicator.open('跳转中...')
- setTimeout(function () {
- window.location.href = response.data.content.returnUrl || 'http://www.ubtob.com'
- }, 3000)
- }
- } else {
- this.login.password = ''
- this.$toast({
- message: response.data.errMsg,
- iconClass: 'el-icon-error'
- })
- let count = response.data.errorCount
- if (count >= 3 && count < 5) {
- this.showCheckCode = true
- this.getCode()
- let _this = this
- setTimeout(function () {
- _this.getCode()
- }, 100)
- this.$toast({
- message: '当前已输错密码' + count + '次,若达到5次今日将无法登陆',
- iconClass: 'el-icon-warning'
- })
- }
- }
- }).catch(err => {
- this.$toast({
- message: err.errMsg,
- iconClass: 'el-icon-error'
- })
- })
- }
- }
- }
- </script>
|