123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- <template>
- <view class="containers" style="min-height: 100vh;">
- <view class="header" style="width: 100vw;height: 122rpx">
- <image class="backFn" src="../../static/images/common/back.png" @click="$switchTab('/pages/index/index')"></image>
- </view>
- <view class="logoText">
- <view class="texts" style="font-weight: bold;">
- <view class="txt">欢迎来到</view>
- <view class="txt">团蜂社区</view>
- </view>
- <view class="" style="margin-top: 48rpx;margin-left: -6rpx;">
- <text class="appTitle">年轻的社区生活元宇宙</text>
- </view>
- </view>
- <view class="login-form">
- <tui-form ref="refLoginForm" :show-message="false">
- <view>
- <tui-input
- v-model="loginQuery.phone" label="+ 86" type="number" padding="26rpx 20rpx 26rpx 0"
- placeholder-style="color: #f3c1c4;font-size: 32rpx;" label-color="#ffffff" border-color="#EA5B1D"
- placeholder="请输入手机号码" background-color="transparent" :border-top="false" color="#ffffff"
- ></tui-input>
- </view>
- <view v-if="loginType === 'password'">
- <tui-input
- v-model="loginQuery.password" type="password" padding="26rpx 20rpx 26rpx 0"
- placeholder-style="color: #f3c1c4;font-size: 32rpx;" background-color="transparent" :border-top="false"
- border-color="#EA5B1D" label-color="#ffffff" placeholder="请输入密码" color="#ffffff"
- >
- <template #right>
- <text style="font-size: 30rpx;color: #dddddd;" @click="isShowResettingPasswordDialog = true">忘记密码</text>
- </template>
- </tui-input>
- </view>
- <view v-if="loginType === 'verificationCode'">
- <tui-input
- v-model="loginQuery.verificationCode" padding="26rpx 20rpx 26rpx 0"
- placeholder-style="color: #f3c1c4;font-size: 32rpx;" background-color="transparent" :border-top="false"
- border-color="#EA5B1D" label-color="#ffffff" placeholder="请输入验证码" color="#ffffff"
- >
- <template #right>
- <tui-countdown-verify
- v-if="loginType === 'verificationCode'" ref="refLoginVerify" width="188rpx"
- height="48rpx" border-width="0" text="获取验证码" :size="30"
- color="#dddddd"
- @send="handleSendVerify"
- ></tui-countdown-verify>
- </template>
- </tui-input>
- </view>
- </tui-form>
- </view>
- <view style="display: flex;flex-direction: column;justify-content: center;align-items: center;margin-top: 80rpx;">
- <view style="text-align: center;" class="login-btn">
- <tui-button
- type="white" width="640rpx" height="82rpx" :size="38"
- margin="40rpx 0 0" shape="circle"
- @click="handleLogin"
- >
- 登录
- </tui-button>
- </view>
- </view>
- <view style="margin-top: 120rpx;display: flex;flex-direction: column;align-items: center;">
- <view style="display: flex;justify-content: space-around;white-space: nowrap;">
- <view style="display: flex;flex-direction: column;align-items: center;">
- <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
- <tui-icon name="friendadd-fill" color="#ffffff" :size="22" @click="go('/pages/login/register')"></tui-icon>
- </view>
- <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">密码注册</view>
- </view>
- <view
- v-if="!(loginType === 'password')"
- style="display: flex;flex-direction: column;align-items: center;padding-left: 48rpx;"
- >
- <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
- <tui-icon name="pwd" color="#ffffff" :size="22" @click="loginType = 'password'"></tui-icon>
- </view>
- <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">密码登录</view>
- </view>
- <view
- v-if="!(loginType === 'verificationCode')"
- style="display: flex;flex-direction: column;align-items: center;padding-left: 48rpx;"
- >
- <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
- <tui-icon name="mobile" color="#ffffff" :size="22" @click="loginType = 'verificationCode'"></tui-icon>
- </view>
- <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">短信登录</view>
- </view>
- <!-- #ifdef MP-ALIPAY -->
- <view
- v-if="!(loginType === 'verificationCode')"
- style="display: flex;flex-direction: column;align-items: center;padding-left: 48rpx;"
- >
- <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
- <tui-icon name="mobile" color="#ffffff" :size="22" @click="handleAliPayLogin"></tui-icon>
- </view>
- <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">支付宝登录</view>
- </view>
- <!-- #endif -->
- <view
- v-if="(terminal === 6) || (terminal === 3) || (terminal === 2)"
- style="display: flex;flex-direction: column;align-items: center;padding-left: 48rpx;"
- >
- <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
- <tui-icon name="wechat" color="#ffffff" :size="22" @click="handleWXLogin"></tui-icon>
- </view>
- <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">微信登录</view>
- </view>
- </view>
- </view>
- <tui-dialog
- style="position: relative;z-index: 888;" :buttons="[{ text: '取消' }, { text: '确定', color: '#586c94' }]"
- :show="isShowResettingPasswordDialog" title="重置密码" @click="handleResettingPassword"
- >
- <template #content>
- <tui-input v-model="resettingFormData.phone" label="手机号" type="number" placeholder="请输入手机号"></tui-input>
- <tui-input v-model="resettingFormData.password" label="密码" type="password" placeholder="请输入密码"></tui-input>
- <tui-input
- v-model="resettingFormData.passwordAgain" label="确认密码" type="password"
- placeholder="请再次输入密码"
- ></tui-input>
- <tui-input v-model="resettingFormData.verificationCode" label="验证码" type="number" placeholder="请输入验证码">
- <template #right>
- <tui-countdown-verify
- ref="refResettingPasswordVerify" width="144rpx"
- @send="handleSendVerifyResettingPassword"
- ></tui-countdown-verify>
- </template>
- </tui-input>
- </template>
- </tui-dialog>
- </view>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import { T_REDIRECT_TYPE, USER_ID, T_STORAGE_KEY } from '../../constant'
- import { getVerifyCodeApi, updatePasswordUserApi } from '../../api/anotherTFInterface'
- import { CHANGE_IS_IN_MINIPROGRAM } from '../../store/modules/type'
- import { getUrlCode } from '../../utils'
- export default {
- name: 'Login',
- data() {
- return {
- loginType: 'verificationCode', // password,verificationCode
- loginQuery: {
- phone: '',
- verificationCode: '',
- password: ''
- },
- resettingFormData: {
- phone: '',
- password: '',
- passwordAgain: '',
- verificationCode: ''
- },
- isShowResettingPasswordDialog: false
- }
- },
- onLoad(options) {
- if (options.to) uni.setStorageSync(T_REDIRECT_TYPE, options.to)
- if (options.miniProgram) {
- this.$store.commit(`app/${CHANGE_IS_IN_MINIPROGRAM}`, !!options.miniProgram)
- }
- },
- onShow() {
- const userId = uni.getStorageSync(USER_ID)
- const userInfo = uni.getStorageSync(T_STORAGE_KEY)
- if (userId && userInfo && userInfo.token) {
- uni.switchTab({
- url: '/pages/index/index'
- })
- } else if ((this.$store.state.app.terminal === 6) || (this.$store.state.app.terminal === 3)) {
- const code = getUrlCode().code
- if (code) this.handleWXLogin()
- }
- },
- computed: {
- ...mapGetters([ 'terminal' ])
- },
- methods: {
- // 获取验证码
- handleSendVerify() {
- if (!this.loginQuery.phone) {
- this.$refs.refLoginVerify.reset()
- return this.$showToast('请填写手机号')
- }
- if (!/^1[3-9]\d{9}$/.test(this.loginQuery.phone)) {
- this.$refs.refLoginVerify.reset()
- return this.$showToast('请输入正确的手机号')
- }
- getVerifyCodeApi({ phone: this.loginQuery.phone })
- .then((res) => {
- this.$refs.refLoginVerify.success()
- this.$showToast('发送成功,请注意查看手机短信')
- })
- .catch(() => {
- this.$refs.refLoginVerify.reset()
- })
- },
- // 点击登录
- handleLogin() {
- const validateRules = [ {
- name: 'phone',
- rule: ['required', 'isMobile'],
- msg: ['请输入手机号', '请输入正确的手机号']
- } ]
- let loginFilterQuery
- if (this.loginType === 'verificationCode') {
- validateRules.push({
- name: 'verificationCode',
- rule: ['required', 'isNum'],
- msg: [ '请输入验证码' ]
- })
- loginFilterQuery = {
- phone: this.loginQuery.phone,
- verificationCode: this.loginQuery.verificationCode
- }
- } else if (this.loginType === 'password') {
- validateRules.push({
- name: 'password',
- rule: ['required', 'isEnAndNo'],
- msg: ['请输入密码', '密码为8~20位英文和数字组合']
- })
- loginFilterQuery = {
- phone: this.loginQuery.phone,
- password: this.loginQuery.password
- }
- }
- this.$refs.refLoginForm
- .validate(this.loginQuery, validateRules)
- .then(() => {
- this.$store.dispatch('auth/phoneLoginRegisterAction', {
- isAfter: true,
- loginData: {
- type: 2, // 1注册,2登录
- ...loginFilterQuery
- }
- })
- })
- .catch((e) => {
- this.$showToast(JSON.stringify(e.errorMsg))
- })
- },
- async handleAliPayLogin() {
- await this.$store.dispatch('auth/aliPayLoginAction', { isAfter: true })
- },
- async handleWXLogin() {
- await this.$store.dispatch('auth/wxLoginAction', { isAfter: true })
- },
- handleSendVerifyResettingPassword() {
- if (!this.resettingFormData.phone) {
- this.$refs.refResettingPasswordVerify.reset()
- return this.$showToast('请填写手机号')
- }
- if (!/^1[3-9]\d{9}$/.test(this.resettingFormData.phone)) {
- this.$refs.refResettingPasswordVerify.reset()
- return this.$showToast('请输入正确的手机号')
- }
- getVerifyCodeApi({ phone: this.resettingFormData.phone })
- .then((res) => {
- this.$refs.refResettingPasswordVerify.success()
- this.$showToast('发送成功,请注意查看手机短信')
- })
- .catch(() => {
- this.$refs.refResettingPasswordVerify.reset()
- })
- },
- handleResettingPassword(e) {
- if (e.index === 0) { } else if (e.index === 1) {
- if (!this.resettingFormData.phone) return this.$showToast('请填写手机号')
- if (!this.resettingFormData.verificationCode) return this.$showToast('请填写验证码')
- if (!this.resettingFormData.password) return this.$showToast('请设置密码!')
- if (this.resettingFormData.password !== this.resettingFormData.passwordAgain) return this.$showToast('密码不一致')
- uni.showLoading({
- title: '操作中'
- })
- updatePasswordUserApi({ ...this.resettingFormData })
- .then(({ data }) => {
- uni.hideLoading()
- this.$showToast('重置成功')
- })
- .catch(() => {
- uni.hideLoading()
- })
- }
- this.resettingFormData.phone = ''
- this.resettingFormData.verificationCode = ''
- this.resettingFormData.password = ''
- this.resettingFormData.passwordAgain = ''
- this.isShowResettingPasswordDialog = false
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .containers {
- display: flex;
- flex-direction: column;
- position: relative;
- box-sizing: border-box;
- padding-bottom: 66rpx;
- background-color: #EA5B1D;
- .backFn {
- padding: 30rpx 30rpx;
- width: 62rpx;
- height: 62rpx;
- }
- .logoText {
- width: 100vw;
- height: 280rpx;
- box-sizing: border-box;
- padding: 30rpx 0 0 56rpx;
- color: #ffffff;
- clear: both;
- .texts {
- /* font-style: oblique; */
- .txt {
- transform: skewX(-6deg);
- }
- line-height: 80rpx;
- font-size: 74rpx;
- letter-spacing: 6rpx;
- -webkit-box-reflect: below 2px -webkit-linear-gradient(top, rgba(250, 250, 250, 0), rgba(250, 250, 250, 0) 70%, rgba(255, 255, 255, 0.644));
- box-reflect: below 0px linear-gradient(top, rgba(250, 250, 250, 0), rgba(250, 250, 250, .05) 70%, rgba(250, 250, 250, 0.3));
- }
- }
- .appTitle {
- font-family: 思源黑体;
- font-size: 34rpx;
- font-weight: normal;
- line-height: 42rpx;
- color: rgba(255, 255, 255, 0.914);
- }
- .login-form {
- margin-top: 20rpx;
- padding: 146rpx 48rpx 10rpx 48rpx;
- /deep/ .tui-input__wrap {
- border-bottom: 2rpx solid #ffffff;
- }
- }
- .login-btn {
- /deep/ .tui-btn {
- font-weight: bold;
- color: #ea5b1d !important;
- }
- }
- }
- </style>
|