修改登录

This commit is contained in:
2025-04-22 23:04:56 +08:00
parent 16074dd05e
commit 95b7c69ddb
169 changed files with 46363 additions and 93 deletions

View File

@ -1,49 +0,0 @@
<template>
<view class="login">
<view class="u-font-xl bold-600 u-margin-top-56">获取你的昵称头像</view>
<view>
<view class="u-flex u-row-between u-col-center avatar u-margin-top-80">
<text>头像</text>
<view class="u-flex u-row-between flex1 u-margin-left-30">
<u-image src="https://api.uviewui.com/uploads/67c169c5927ce709a7f508d3.jpeg" width="100rpx" height="100rpx" shape="circle"></u-image>
<u-icon name="arrow-right" color="#9F9EA4" size="32"></u-icon>
</view>
</view>
<view class="u-flex u-row-between u-col-center avatar u-margin-top-80">
<text>昵称</text>
<view class="u-flex u-row-between flex1 u-margin-left-30">
<view>用户昵称</view>
<u-icon name="close" color="#9F9EA4" size="32"></u-icon>
</view>
</view>
<view class="menu">
<u-button @click="quickLogin" hover-class="none" :customStyle="{backgroundColor: themeColor, color: '#fff', border: 'none', padding: '16rpx 0'}" :hair-line="false" shape="circle">允许</u-button>
<u-button class="u-margin-top-32" hover-class="none" :customStyle="{color: '#000', border: 'none', padding: '16rpx 0'}" :plain="true" :hair-line="false" shape="circle">拒绝</u-button>
</view>
</view>
</view>
</template>
<script>
</script>
<style lang="scss" scoped>
page {
background-color: #fff;
}
.login {
margin: 0 32rpx;
.avatar text {
font-size: 48rpx;
}
.menu {
margin-top: 200rpx;
}
}
</style>

223
pages/login/fastLogin.vue Normal file
View File

@ -0,0 +1,223 @@
<template>
<view class="login">
<view class="u-font-xl bold-600 u-margin-top-56">获取你的昵称头像</view>
<view>
<form @submit="doLogin">
<view class="u-flex u-row-between avatar u-margin-top-80">
<text>头像</text>
<view class="u-flex u-row-between flex1 u-margin-left-30">
<button
style="border: none;"
class="u-flex u-row-between w-full"
hover-class="none"
open-type="chooseAvatar"
@chooseavatar="onChooseAvatar"
>
<!-- <u-image :src="cloudPath + 'img/avatar.jpeg'" width="100rpx" height="100rpx" shape="circle"></u-image> -->
<u-image v-if="form.avatar" :src="form.avatar" width="100rpx" height="100rpx" shape="circle"></u-image>
<view v-else="!form.avatar">点击授权头像</view>
<u-icon name="arrow-right" color="#9F9EA4" size="32"></u-icon>
</button>
</view>
</view>
<view class="u-flex u-row-between avatar u-margin-top-80">
<text>昵称</text>
<view class="u-flex u-row-between flex1 u-margin-left-30">
<input
:value="form.nickname"
name="nickname"
type="nickname"
placeholder="请输入昵称"
placeholder-style="color: #000;"
/>
<u-icon name="arrow-right" color="#9F9EA4" size="32"></u-icon>
</view>
</view>
<view class="menu">
<view class="u-margin-bottom-32" >
<button form-type="submit" class="submit-btn" hover-class="none" :customStyle="{backgroundColor: themeColor, color: '#fff', border: 'none', padding: '16rpx 0'}" :hair-line="false" shape="circle">允许</button>
</view>
<u-button hover-class="none" :customStyle="{color: '#000', border: 'none', padding: '16rpx 0'}" :plain="true" :hair-line="false" shape="circle">拒绝</u-button>
</view>
</form>
<view class="u-margin-top-32 u-flex u-row-center">
<u-checkbox v-model="form.isAgree" shape="circle" :active-color="themeColor">
<view class="sm row-start">
已阅读并同意
<navigator :style="{color: themeColor}" hover-class="none" url="/pages/server_explan/server_explan?type=0">
服务协议
</navigator>
<navigator :style="{color: themeColor}" hover-class="none" url="/pages/server_explan/server_explan?type=1">
隐私政策
</navigator>
</view>
</u-checkbox>
</view>
</view>
</view>
</template>
<script>
import { mapMutations, mapActions, mapGetters } from 'vuex'
import { uploadFile } from "@/utils/tools";
import {
accountLogin,
codeLogin,
sendSms,
wxpLogin,
smsCodeLogin,
opLogin,
authLogin,
updateUser
} from '@/api/app'
import { getWxCode, getUserInfo } from '@/utils/login'
import { isWeixinClient, currentPage, client } from '@/utils/tools'
import Cache from '@/utils/cache'
import { BACK_URL } from '@/config/cachekey'
export default {
data() {
return {
form: {
avatar: '',
nickname: '',
isAgree: false
}
}
},
methods: {
...mapMutations(['LOGIN', 'LOGOUT']),
...mapActions(['getUser']),
// 选择头像
onChooseAvatar(e) {
const avatarUrl = e.detail.avatarUrl;
if (!avatarUrl) {
return;
}
uni.showLoading({
title: "正在上传中...",
mask: true,
});
uploadFile(avatarUrl).then((res) => {
uni.hideLoading();
this.form.avatar = res.url;
}).catch(() => {
uni.hideLoading();
this.$toast({
title: "上传失败",
});
});
},
// 登录
async doLogin(e) {
this.form.nickname = e.detail.value.nickname
if (!this.form.isAgree) {
this.$toast({title: '请先阅读并同意服务协议和隐私政策'})
return false
}
const {
userInfo: { avatarUrl, nickName, gender }
} = await getUserInfo()
console.log(await getUserInfo())
uni.showLoading({
title: '登录中',
mask: true
})
const wxCode = await getWxCode()
const {code, data, msg} = await authLogin({
code: wxCode,
nickname: nickName || '', //支付宝小程序没有直接获取昵称
headimgurl: avatarUrl
})
if (code == 1) {
if (data.is_new_user) {
// 新用户注册,这边可以预留个邀请码
uni.hideLoading()
this.loginData = data
this.handleSubmitInfo()
} else {
this.loginHandle(data)
}
} else {
this.$toast({title: msg})
}
},
// 更新新注册的用户信息
async handleSubmitInfo() {
const loginData = this.loginData || {}
const res = await updateUser({
avatar: this.form.avatar,
nickname: this.form.nickname
}, loginData.token)
if (res.code == 1) {
this.loginHandle(loginData)
}
},
// 登录结果处理
async loginHandle(data) {
this.LOGIN(data)
uni.hideLoading()
const inviteCode = Cache.get('INVITE_CODE')
if (inviteCode) {
inputInviteCode({
code: inviteCode
})
}
// #ifdef H5
location.replace('/mobile' + (Cache.get(BACK_URL) || '/'))
Cache.remove(BACK_URL)
//#endif
// #ifndef H5
uni.navigateBack({
success() {
// 刷新上一页
const { onLoad, options } = currentPage()
onLoad && onLoad(options)
}
})
//#endif
},
}
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.login {
margin: 0 32rpx;
.avatar text {
font-size: 48rpx;
}
.menu {
margin-top: 200rpx;
}
.submit-btn {
background-color: #254062;
border-radius: 200rpx;
color: #fff;
height: 81rpx;
line-height: 81rpx;
}
}
</style>

View File

@ -10,8 +10,14 @@
</view>
<view class="u-margin-top-56">
<u-button @click="quickLogin" hover-class="none" :customStyle="{backgroundColor: themeColor, color: '#fff', border: 'none', padding: '16rpx 0'}" :hair-line="false" shape="circle">快捷登录</u-button>
<u-button @click="mobileLogin" hover-class="none" class="u-margin-top-32" :customStyle="{color: themeColor, border: '1px solid ' + themeColor, padding: '16rpx 0'}" :plain="true" :hair-line="false" shape="circle">手机号登录/注册</u-button>
<!-- #ifdef MP -->
<view class="u-margin-bottom-32">
<u-button @click="fastLogin" hover-class="none" :customStyle="{backgroundColor: themeColor, color: '#fff', border: 'none', padding: '16rpx 0'}" :hair-line="false" shape="circle">快捷登录</u-button>
</view>
<!-- #endif -->
<view>
<u-button @click="mobileLogin" hover-class="none" :customStyle="{color: themeColor, border: '1px solid ' + themeColor, padding: '16rpx 0'}" :plain="true" :hair-line="false" shape="circle">手机号登录/注册</u-button>
</view>
</view>
</view>
</template>
@ -20,27 +26,30 @@
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
quickLogin() {
fastLogin() {
uni.navigateTo({
url: '/pages/login/fast'
url: '/pages/login/fastLogin'
})
},
mobileLogin() {
uni.navigateTo({
url: '/pages/login/mobile'
url: '/pages/login/mobileLogin'
})
}
}
}
</script>
<style lang="scss" scoped>
<style lang="scss">
page {
background-color: #fff;
}

View File

@ -101,7 +101,7 @@
}
</script>
<style lang="scss" scoped>
<style lang="scss">
page {
background-color: #fff;
}