123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506 |
- <!-- 微信公众号的登录回调页 -->
- <template>
- <view />
- <!-- 佣金确权 -->
- <su-popup :show="selectSocialUsers" type="center" round="10" :isMaskClick="false">
- <view class="head-nav">
- <view class="head-box">
- <view class="ss-flex ss-m-b-20">
- <view class="isActive head-title">
- 请选择账号登录
- </view>
- </view>
- </view>
- </view>
- <view>
- <scroll-view class="side-menu-wrap" scroll-y style="height:600rpx">
- <view v-for="user in state.socialUsers" :key="user.username" class="ss-flex"
- style="padding: 20rpx;margin: 0 auto;width: 520rpx;" @click="selectUser(user.username)">
- <image :src="user.avatar"
- style="width:100rpx;height:100rpx;border-radius: 50%;margin-right:20rpx" />
- <view>{{user.username}}</view>
- </view>
- <view v-if="!state.socialUsers.length" style="padding: 20rpx;width: 520rpx;text-align: center;margin-top: 100rpx;">
- 该微信暂绑定无账号
- <br/>
- 请使用其他登陆方式
- </view>
- </scroll-view>
- </view>
- </su-popup>
- <su-popup :show="isPopup" round="10" :isMaskClick="false">
- <view>
- <view class="head-box">
- <view class="ss-flex ss-m-b-20">
- <view class="isActive head-title">
- 微信注册
- </view>
- </view>
- </view>
- <!-- 表单项 -->
- <uni-forms v-model="state.model" :rules="state.rules" validateTrigger="bind"
- labelWidth="140" labelAlign="center" class="loginUniForm">
- <uni-forms-item name="username" label="用户名" class="loginUniFormItem" :error-message="state.usernameErrorMsg">
- <uni-easyinput placeholder="请输入用户名" v-model="state.registerReqVO.username" :inputBorder="false"
- :clearable="false" @blur="verifyUsername">
- <template v-slot:right>
- <view v-if="!state.verifyUsername" class="icon">
- <image style :src="sheep.$url.static('/static/images/shibai.png')" />
- </view>
- <view v-else class="icon">
- <image :src="sheep.$url.static('/static/images/chenggong.png')" />
- </view>
- </template>
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item name="mobile" label="手机号" class="mobile loginUniFormItem ss-p-t-10" :error-message="state.mobileErrorMsg">
- <phoneInternationalInput :verify-username="state.verifyUsername" @input="mobileInput"/>
- </uni-forms-item>
- <uni-forms-item name="code" label="验证码" class="loginUniFormItem">
- <uni-easyinput placeholder="请输入验证码" v-model="state.model.code" :inputBorder="false" type="number"
- maxlength="4">
- </uni-easyinput>
- </uni-forms-item>
- </uni-forms>
- <view
- style="display: flex;justify-content: space-between;padding: 40rpx;padding-bottom: 0rpx;padding-bottom: 40rpx">
- <button class="ss-reset-button login-btn-start" @tap="officialRegister"> 注册 </button>
- </view>
- </view>
- </su-popup>
- </template>
- <script setup>
- import {
- ref,
- reactive,
- unref,
- computed,
- onBeforeMount
- } from 'vue';
- import sheep from '@/sheep';
- import {
- onLoad
- } from '@dcloudio/uni-app';
- import {
- showAuthModal,
- closeAuthModal,
- getSmsCode,
- getSmsTimer
- } from '@/sheep/hooks/useModal';
- import {
- code,
- mobile
- } from '@/sheep/validate/form';
- import AuthUtil from '@/sheep/api/member/auth';
- import phoneInternationalInput from '@/sheep/components/s-auth-modal/components/phone-international-input.vue';
- const mobileInput = (mobile,mobileError)=>{
- state.model.mobile = mobile;
- state.mobileErrorMsg = mobileError;
- }
- // 数据
- const state = reactive({
- verifyUsername: false,
- usernameErrorMsg:'',
- mobileErrorMsg:'',
- openid: '',
- socialUsers: [],
- registerReqVO: {
- type: 31,
- code: "",
- state: "",
- username: "",
- },
- isMobileEnd: false, // 手机号输入完毕
- codeText: '获取验证码',
- model: {
- mobile: '', // 手机号
- code: '', // 验证码
- scene: 1
- },
- rules: {
- code,
- mobile,
- },
- });
- const isPopup = ref(false);
- const selectSocialUsers = ref(false);
- // 定义修改状态的方法
- function updateIsPopup() {
- isPopup.value = true;
- }
- // 打开用户的选择列表,如果有账户并且多个的话
- function updateSocialUsers(openid, socialUsers) {
- selectSocialUsers.value = true;
- state.openid = openid;
- state.socialUsers = socialUsers;
- console.log("updateSocialUsers条用了,这时state.socialUsers是", state.socialUsers)
- }
- // 选登录的用户
- async function selectUser(username) {
- console.log(username)
- // 提交数据
- const {
- code
- } = await AuthUtil.selectUsernameLogin({
- openId: state.openid,
- username
- });
- if (code === 0) {
- // closeAuthModal();
- // 检测 H5 登录回调
- let returnUrl = uni.getStorageSync('returnUrl');
- if (returnUrl) {
- uni.removeStorage('returnUrl');
- location.replace(returnUrl);
- } else {
- uni.switchTab({
- url: '/',
- });
- }
- }
- }
- let lastUsername = ref('')
- async function verifyUsername(e) {
- const username = e.detail.value;
- if (username == '' || username == lastUsername.value) {
- // 为空或者没改东西,不调校验
- return false;
- }
- lastUsername.value = username
- // 提交数据
- const {
- data
- } = await AuthUtil.verifyUsername(username);
- // false就是已经有这个用户名,不可以用。true是没有,可以改
- console.log(data)
- if(data){
- state.usernameErrorMsg = ''
- state.verifyUsername = data
- }else {
- state.usernameErrorMsg = '已存在用户名!'
- state.verifyUsername = data
- }
- }
- // 直接点微信注册,或者点微信登录,但没账号的都提示注册
- async function officialRegister() {
- // 没有linkId 不给注册
- const linkId = uni.getStorageSync("linkId");
- if (!linkId) {
- sheep.$helper.toast('您只能通过分享注册');
- return false;
- }
- state.registerReqVO.linkId = linkId
- const {
- code
- } = await AuthUtil.OfficialEnterLogin(state.model, state.registerReqVO);
- // 提交数据
- if (code === 0) {
- closeAuthModal();
- // 检测 H5 登录回调
- let returnUrl = uni.getStorageSync('returnUrl');
- if (returnUrl) {
- uni.removeStorage('returnUrl');
- location.replace(returnUrl);
- } else {
- uni.switchTab({
- url: '/',
- });
- }
- }
- }
- onBeforeMount(async () => {
- const options = {}
- new URLSearchParams(location.search).forEach((value, key) => {
- options[key] = value;
- });
- state.registerReqVO.code = options.code
- state.registerReqVO.state = options.state
- })
- onLoad(async (options) => {
- // #ifdef H5
-
-
-
- // 将 search 参数赋值到 options 中,方便下面解析
- new URLSearchParams(location.search).forEach((value, key) => {
- options[key] = value;
- });
- const event = options.event;
- const code = options.code;
- const state = options.state;
- if (event === 'login') { // 场景一:登录
- const res = await sheep.$platform.useProvider().login(code, state)
- console.log("login.vue的res", res)
- if (!res) {
- uni.showModal({
- title: '提示',
- content: '您的微信没有账号,请通过分享注册',
- confirmColor: '#0e932e', //确定字体颜色
- showCancel: false, //没有取消按钮的弹框
- buttonText: '确定',
- success: function(res) {
- if (res.confirm) {
- sheep.$router.go('/pages/index/index')
- }
- }
- });
- return false
- }
- if (res.data.socialUsers != null) {
- updateSocialUsers(res.data.openid, res.data.socialUsers)
- return false
- }
- } else if (event === 'register') {
- const res = await sheep.$platform.useProvider().register(code, state)
- updateIsPopup()
- return false
- } else if (event === 'bind') { // 场景二:绑定
- await sheep.$platform.useProvider().bind(code, state);
- }
-
- // 检测 H5 登录回调
- let returnUrl = uni.getStorageSync('returnUrl');
- if (returnUrl) {
- uni.removeStorage('returnUrl');
- location.replace(returnUrl);
- } else {
- uni.switchTab({
- url: '/',
- });
- }
- // #endif
- });
- </script>
- <style lang="scss" scoped>
- .icon {
- display: flex;
- align-items: center;
- margin-right: 7rpx
- }
- .icon image {
- width: 35rpx;
- height: 35rpx;
- }
- @keyframes title-animation {
- 0% {
- font-size: 32rpx;
- }
- 100% {
- font-size: 36rpx;
- }
- }
- .login-wrap {
- padding: 50rpx 34rpx;
- min-height: 500rpx;
- background-color: #fff;
- border-radius: 20rpx 20rpx 0 0;
- }
- .head-box {
- padding: 40rpx 40rpx 0;
- .head-title {
- min-width: 160rpx;
- font-size: 36rpx;
- font-weight: bold;
- color: #333333;
- line-height: 36rpx;
- }
- .head-title-active {
- width: 160rpx;
- font-size: 32rpx;
- font-weight: 600;
- color: #999;
- line-height: 36rpx;
- }
- .head-title-animation {
- animation-name: title-animation;
- animation-duration: 0.1s;
- animation-timing-function: ease-out;
- animation-fill-mode: forwards;
- }
- .head-title-line {
- position: relative;
- &::before {
- content: '';
- width: 1rpx;
- height: 34rpx;
- background-color: #e4e7ed;
- position: absolute;
- left: -30rpx;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- .head-subtitle {
- font-size: 26rpx;
- font-weight: 400;
- color: #afb6c0;
- text-align: left;
- display: flex;
- }
- }
- // .code-btn[disabled] {
- // background-color: #fff;
- // }
- .code-btn-start {
- width: 160rpx;
- height: 56rpx;
- line-height: normal;
- border: 2rpx solid var(--ui-BG-Main);
- border-radius: 28rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: var(--ui-BG-Main);
- opacity: 1;
- }
- .forgot-btn {
- width: 160rpx;
- line-height: 56rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: #999;
- }
- .login-btn-start {
- width: 158rpx;
- height: 56rpx;
- line-height: normal;
- background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
- border-radius: 28rpx;
- font-size: 26rpx;
- font-weight: 500;
- color: #fff;
- }
- .type-btn {
- padding: 20rpx;
- margin: 40rpx auto;
- width: 200rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: #999999;
- }
- .auto-login-box {
- width: 100%;
- .auto-login-btn {
- width: 68rpx;
- height: 68rpx;
- border-radius: 50%;
- margin: 0 30rpx;
- }
- .auto-login-img {
- width: 68rpx;
- height: 68rpx;
- border-radius: 50%;
- }
- }
- .agreement-box {
- margin: 80rpx auto 0;
- .protocol-check {
- transform: scale(0.7);
- }
- .agreement-text {
- font-size: 26rpx;
- font-weight: 500;
- color: #999999;
- .tcp-text {
- color: var(--ui-BG-Main);
- }
- }
- }
- // 修改密码
- .editPwd-btn-box {
- .save-btn {
- width: 690rpx;
- line-height: 70rpx;
- background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
- border-radius: 35rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #ffffff;
- }
- .forgot-btn {
- width: 690rpx;
- line-height: 70rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #999999;
- }
- }
- .code-btn-start {
- color: #55b774;
- border: 1px solid #55b774;
- }
- .disabled {
- border: 1px solid #f7f7f7;
- }
- .agreement-box {
- margin: 20rpx 0;
- }
- .login-btn-start {
- background: rgb(14, 147, 46);
- width: 100%;
- height: 80rpx;
- font-size: 32rpx;
- }
- .loginUniForm {
- margin: 40rpx;
- border: 1rpx solid #d6d6d6;
- padding: 10rpx 15rpx;
- border-radius: 10rpx;
- }
- .loginUniFormItem {
- border-bottom: 1rpx solid #d6d6d6;
- padding-bottom: 10rpx;
- }
- .loginUniFormItem:last-child {
- border-bottom: none;
- padding-top: 10rpx;
- }
- ::v-deep .loginUniFormItem .uni-forms-item__inner {
- padding-bottom: 0;
- }
- ::v-deep .loginUniFormItem .uni-error-message {
- bottom: -20rpx;
- }
- </style>
|