123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template>
- <view class="ss-p-30 head-box">
- <view class="head-title">欢迎来到门墩儿,登录/注册领积分</view>
- <view class="head-subtitle ss-m-t-30 justify-center">未注册的手机号,验证后自动注册账号</view>
- <view class="ss-m-t-60">
- <!-- 短信验证码登录 -->
- <uni-forms
- ref="smsLoginRef"
- v-model="state.sms"
- :rules="state.smsRules"
- validateTrigger="bind"
- labelWidth="140"
- labelAlign="center"
- >
- <uni-forms-item name="phone" label="手机号">
- <uni-easyinput placeholder="请输入手机号" v-model="state.sms.phone" :inputBorder="false" type="number">
- <template v-slot:right>
- <button class="login-code" :disabled="state.isMobileEnd" :class="{ 'code-btn-end': state.isMobileEnd }" @tap="handleCode">
- {{ getSmsTimer('smsLogin') }}
- </button>
- </template>
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item name="code" label="验证码">
- <uni-easyinput placeholder="请输入验证码" v-model="state.sms.code" :inputBorder="false" type="number" maxlength="6"></uni-easyinput>
- </uni-forms-item>
- </uni-forms>
- <button class="send-button" @tap="handleLogin"> 登录/注册 </button>
- <view class="agreement-box ss-flex ss-row-center">
- <uni-icons size="20" :type="protocol ? 'checkbox-filled' : 'circle'" :color="protocol ? '#00897B' : '#ccc'" @tap="protocol = !protocol"></uni-icons>
- <view class="color-999 ss-flex ss-col-center ss-m-l-8 font-size-13">
- 我已阅读并遵守
- <view class="color-primary" @tap.stop="handleToDetail('user')">
- 《用户协议》
- </view>
- <view class="agreement-text">和</view>
- <view class="color-primary" @tap.stop="handleToDetail('privacy')">
- 《隐私协议》
- </view>
- </view>
- </view>
- </view>
- <AdvertisePop></AdvertisePop>
- </view>
- </template>
- <script setup>
- // 扫码登录注册
- import { ref, unref } from 'vue'
- import { mobile, code } from '@/utils/validate'
- import { getSmsCode, getSmsTimer } from '@/utils/code'
- import { userStore } from '@/store/user'
- import { onLoad } from '@dcloudio/uni-app'
- import { useIM } from '@/hooks/useIM'
- import { watch } from 'vue'
- import AdvertisePop from '@/components/Advertisement'
- const useUserStore = userStore()
- const smsLoginRef = ref()
- const protocol = ref(false)
- const state = ref({
- isMobileEnd: false, // 手机号输入完毕
- codeText: '获取验证码',
- sms: {
- phone: '',
- code: '',
- inviteCode: ''
- },
- smsRules: {
- code,
- phone: mobile
- }
- })
- const { resetConfig } = useIM()
- watch(() => useUserStore?.accountInfo?.userId, (newVal, oldVal) => {
- if (useUserStore.refreshToken) {
- // 监听登录状态
- resetConfig()
- }
- })
- onLoad((options) => {
- console.log(options, 'options-my-share=========')
- // const testOptions = { scene: "shareId%3D1" }
- if (options.scene) {
- const scene = decodeURIComponent(options.scene)
- const shareUserId = scene.split('=')[1]
- state.value.sms.inviteCode = shareUserId
- console.log(shareUserId, 'shareUserId')
- }
- })
- // 获取验证码
- const handleCode = () => {
- if (!state.value.sms.phone) {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none',
- duration: 2000
- })
- return
- }
- getSmsCode('smsLogin', state.value.sms.phone)
- }
- // 查看协议详情
- const handleToDetail = (type) => {
- const url = type === 'user' ? '/pagesB/agreement/user' : '/pagesB/agreement/privacy'
- uni.navigateTo({
- url
- })
- }
- // 登录
- const handleLogin = async () => {
- if (!protocol.value) return uni.showToast({ title: '请先阅读并同意用户协议和隐私政策', icon: 'none' })
- const validate = await unref(smsLoginRef).validate()
- if (!validate) return
- if (!state.value.sms.inviteCode) {
- uni.showToast({
- title: '邀请码缺失,请重新扫码',
- icon: 'none'
- })
- return
- }
- await useUserStore.handleShareUserRegister(state.value.sms)
- }
- </script>
- <style scoped lang="scss">
- .login-code {
- width: 73px;
- min-width: 73px;
- color: #00897B;
- text-align: center;
- font-size: 12px;
- cursor: pointer;
- border: 1px dashed #00897B;
- border-radius: 26px;
- padding: 0;
- }
- .head-title {
- font-size: 40rpx;
- text-align: center;
- color: #00897B;
- }
- </style>
|