| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477 |
- <template>
- <view class="login">
- <view class="img">
- <image src="https://t9.9026.com/imgs/bg_1.jpg" mode="scaleToFill"></image>
- </view>
- <view class="title">
- <view class="line"></view>
- <view class="logintype"><text>登录方式</text></view>
- <view class="line"></view>
- </view>
- <view class="typebtn">
- <view class="item" @click="goYouyue">
- <image src="/static/icon/youyue.png" mode="scaleToFill"></image>
- <text>加入优悦会</text>
- </view>
- <view class="item" @click="getmsg">
- <image src="/static/icon/wechart.png" mode="scaleToFill"></image>
- <text>微信登录</text>
- <!-- <text v-if="isLoginOff">授权登录</text> -->
- </view>
- </view>
- <!-- <u-modal @close="closeMask" closeOnClickOverlay="true" :show="modal.show" :title="modal.title"
- :show-confirm-button="false">
- <view>
- <button class="avatar" open-type="chooseAvatar" @chooseavatar="handleChooseAvatar">
- <image class="user-avatar" style="height: 176rpx;width: 176rpx;border-radius: 50%;"
- :src="modal.avatar?modal.avatar:'/static/icon/avatar.png'" />
- </button>
- <input class="avatar" type="nickname" :value="modal.nickname" placeholder="填写昵称"
- @change="handleChangeNickname">
- <button class="confirm" @click="handleConfirmWechatUserInfo">提交</button>
- </view>
- </u-modal> -->
- <u-popup :show="modal.show" :round="10" mode="bottom" @close="close">
- <view class="popup-login">
- <view class="popup-login-top">
- <image style="width: 56rpx; height: 56rpx; margin-right: 20rpx; "
- src="https://t9.9026.com/imgs/loginLogo1.png" mode=""></image>
- <text>登录后体验更多功能</text>
- </view>
- <view class="popup-login-main">
- <button class="avatar" open-type="chooseAvatar" @chooseavatar="handleChooseAvatar">
- <image class="user-avatar" style="height: 176rpx;width: 176rpx;border-radius: 50%;"
- :src="modal.avatar?modal.avatar:'https://t9.9026.com/imgs/loginAvatar.png'" />
- </button>
- </view>
- <view class="popup-login-ipt">
- <input class="avatar" type="nickname" :value="modal.nickname" placeholder="输入昵称"
- @change="handleChangeNickname">
- </view>
- <view class="popup-login-btn" @click="handleConfirmWechatUserInfo">
- <button class="confirm">完成</button>
- </view>
- <view class="popup-login-text">
- <view style="display: flex;align-items: center;justify-content: center;">
- <text>登录即代表已阅读并同意</text>
- <view style="color: #FF6200;display: flex;align-items: center;justify-content: center;">
- <view @click="goAgreement">服务协议</view>
- <view @click="goPrivacy">、隐私协议</view>
- </view>
- </view>
- </view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- imgBase64: '',
- isLoginOff: false,
- modal: {
- show: false,
- title: '用户信息获取',
- nickname: '',
- avatar: ''
- },
- code: '',
- encryptedData: '',
- iv: '',
- data: {}
- }
- },
- onLoad() {
- this.isLoginOff = this.$store.getters.userInfo
- },
- methods: {
- getPageUrl() {
- const pages = getCurrentPages();
- console.log(pages, '--------->pages')
- if (pages.length == 1) {
- const currentPage = pages[0];
- let pageUrl = `${currentPage.$page.fullPath}`;
- console.log('当前页面url1:', pageUrl);
- return pageUrl
- } else {
- const currentPage = pages[pages.length - 2];
- let pageUrl = `${currentPage.$page.fullPath}`;
- console.log('当前页面url2:', pageUrl);
- return pageUrl
- }
- },
- //服务协议
- goAgreement() {
- console.log(111);
- uni.navigateTo({
- url: '/pages/my/protocol/UserAgreement'
- })
- },
- //隐私协议
- goPrivacy() {
- console.log(222);
- uni.navigateTo({
- url: '/pages/my/protocol/PrivacyPolicy'
- })
- },
- //关闭遮罩层
- closeMask() {
- this.modal.show = false
- },
- close() {
- this.modal.show = false
- },
- //提交
- handleConfirmWechatUserInfo() {
- if (!this.modal.avatar) {
- this.$u.toast('请上传头像')
- return
- }
- if (!this.modal.nickname) {
- this.$u.toast('请填写昵称')
- return
- }
- this.$loading('数据提交中...')
- this.$api.my.update({
- avatar: this.modal.avatar,
- nickname: this.modal.nickname
- }).then(res => {
- this.$hideLoading()
- this.$store.dispatch('user/info', res.data)
- this.modal.show = false
- //获取登录页前地址
- let pages = this.getPageUrl()
- if (pages != '/pages/login/login') {
- uni.reLaunch({
- url: pages,
- })
- } else {
- uni.switchTab({
- url: '/pages/my/my'
- })
- }
- })
- },
- handleGetWechatUserInfo() {
- this.modal.show = true
- },
- // 获取头像
- handleChooseAvatar({
- detail
- }) {
- let _this = this
- // this.modal.avatar = detail.avatarUrl
- uni.getFileSystemManager().readFile({
- filePath: detail.avatarUrl, // 选择图片返回的相对路径
- encoding: 'base64', // 编码格式
- success: res => { // 成功的回调
- uni.uploadFile({
- url: _this.$setting.BASE_URL + '/v1/user/uploadFile',
- // filePath: 'data:image/png;base64,' + res.data,
- filePath: detail.avatarUrl,
- name: 'file',
- success({
- data
- }) {
- const res = JSON.parse(data)
- const {
- url
- } = res.data
- _this.modal.avatar = url
- console.log('-->data', _this.modal.avatar)
- }
- })
- // this.modal.avatar = detail.avatarUrl
- // console.log('data:image/png;base64,' + res.data)
- }
- })
- },
- //获取昵称
- handleChangeNickname(res) {
- this.modal.nickname = res.detail.value
- },
- // 加入优悦会
- goYouyue() {
- uni.navigateTo({
- url: '/pages/login/youyue'
- })
- },
- getCode() {
- return new Promise((resolve, reject) => {
- uni.getUserInfo({
- success: loginRes => {
- this.data.encryptData = loginRes.encryptedData,
- this.data.iv = loginRes.iv
- resolve(this.data)
- }
- })
- })
- },
- //获取微信登录的code码
- getmsg() {
- uni.login({
- provider: uni.$u.platform,
- success: res => {
- this.getCode().then((data) => {
- const params = {
- code: res.code,
- iv: data.iv,
- encryptData: data.encryptData
- }
- console.log(params);
- this.$api.my.myLogin(params).then(res => {
- if (res.code == 0) {
- let {
- token
- } = res.data
- this.handleGetWechatUserInfo()
- // this.handleConfirmWechatUserInfo()
- this.$store.dispatch('user/token', token)
- } else {
- uni.showToast({
- icon: 'none',
- title: res.msg
- })
- }
- })
- })
- }
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- $pageColor:#F9F9F9;
- $bgColor:#FFFFFF;
- .login {
- height: 100%;
- background: $bgColor;
- box-sizing: border-box;
- }
- .userinfo {
- position: absolute;
- top: 38rpx;
- left: 200rpx;
- .unlogin {
- width: 220rpx;
- font-size: 44rpx;
- font-family: PingFang-SC-Heavy, PingFang-SC;
- font-weight: 500;
- color: #FFFFFF;
- display: block;
- margin-top: 20rpx;
- }
- .username {
- width: 184rpx;
- height: 44rpx;
- font-size: 44rpx;
- font-family: PingFang-SC-Heavy, PingFang-SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 44rpx;
- display: block;
- margin-bottom: 24rpx;
- }
- .userId {
- font-size: 32rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 32rpx;
- }
- }
- .img {
- image {
- width: 100vw;
- height: 910rpx;
- }
- }
- .title {
- height: 40rpx;
- width: 690rpx;
- // margin-top: 168rpx;
- margin-left: 30rpx;
- margin-bottom: 72rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .line {
- width: 240rpx;
- height: 2rpx;
- background: #EDEDED;
- border-radius: 1rpx;
- }
- .logintype {
- position: relative;
- top: -8rpx;
- text {
- font-size: 28rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #333333;
- }
- }
- }
- .typebtn {
- display: flex;
- align-items: center;
- justify-content: space-around;
- .item {
- width: 140rpx;
- height: 156rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- image {
- width: 104rpx;
- height: 104rpx;
- margin-bottom: 12rpx;
- }
- text {
- display: block;
- font-size: 28rpx;
- font-family: PingFang-SC-Medium, PingFang-SC;
- font-weight: 500;
- color: #666666;
- }
- }
- }
- //登录弹框
- .popup-login {
- width: 100%;
- height: 706rpx;
- background: #FFFFFF;
- box-shadow: 0rpx -10rpx 32rpx 0px rgba(0, 0, 0, 0.04);
- border-radius: 16rpx 16rpx 0px 0px;
- padding: 40rpx 64rpx 92rpx;
- .popup-login-top {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- font-size: 30rpx;
- font-weight: bold;
- color: #000000;
- }
- .popup-login-main {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 62rpx;
- .avatar {
- width: 176rpx;
- height: 176rpx;
- border-radius: 50%;
- border: 0;
- background: transparent;
- &::after {
- border: none;
- }
- .user-avatar {
- object-fit: cover;
- object-position: center;
- }
- }
- }
- .popup-login-ipt {
- width: 100%;
- height: 88rpx;
- background: #F6F6F6;
- border-radius: 44rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 48rpx;
- .avatar {
- width: 100%;
- height: 100%;
- text-align: center;
- font-size: 28rpx;
- font-weight: bold;
- color: #999999;
- }
- }
- .popup-login-btn {
- width: 100%;
- height: 88rpx;
- background: #1AAC1B;
- border-radius: 38rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 32rpx;
- .confirm {
- border: 0;
- background: transparent;
- font-size: 28rpx;
- font-weight: bold;
- color: #FFFFFF;
- &::after {
- border: none;
- }
- }
- }
- .popup-login-text {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 32rpx;
- font-weight: bold;
- color: #999999;
- font-size: 22rpx;
- }
- }
- </style>
|