123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <!-- 短信注册 -->
- <template>
- <view>
-
- <!-- 表单项 -->
- <uni-forms ref="smsLoginRef" v-model="state.model" :rules="state.rules" validateTrigger="bind" labelWidth="140"
- labelAlign="center" class="loginUniForm">
- <uni-forms-item name="username" :label="t('account.username')" class="loginUniFormItem" :error-message="state.usernameErrorMsg">
- <uni-easyinput :placeholder="t('account.enter_username')" v-model="state.model.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="password" :label="t('user.登陆密码')" class="loginUniFormItem">
- <uni-easyinput type="password" :placeholder="t('user.请输入登陆密码')" v-model="state.model.password" :inputBorder="false">
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item name="mobile" :label="t('account.phone_number')" 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="linkId" :label="t('account.link_id')" class="loginUniFormItem" >
- <uni-easyinput :placeholder="t('account.enter_link_id')" v-model="state.model.linkId" :inputBorder="false" type="input">
- </uni-easyinput>
- </uni-forms-item>
- </uni-forms>
- <view style="display: flex;justify-content: space-between;margin-top: 20rpx;">
- <!-- <button class="ss-reset-button forgot-btn" @tap="showAuthModal('resetPassword')">
- 忘记密码
- </button> -->
- <button class="ss-reset-button login-btn-start" @tap="registerSubmit"> {{ t('account.register')}} </button>
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref,
- reactive,
- unref,
- computed
- } from 'vue';
- import sheep from '@/sheep';
- import {
- // code,
- mobile,
- username,
- password,
- payPassword
- } from '@/sheep/validate/form';
- import {
- showAuthModal,
- closeAuthModal,
- getSmsCode,
- getSmsTimer
- } from '@/sheep/hooks/useModal';
- import AuthUtil from '@/sheep/api/member/auth';
- import phoneInternationalInput from './phone-international-input.vue';
- import { t } from '@/locale'
- const hasStorageLinkId = ref(!!uni.getStorageSync("linkId"))
- const mobileInput = (mobile,mobileError)=>{
- // console.log(mobile,mobileError);
- state.model.mobile = mobile;
- state.mobileErrorMsg = mobileError;
- }
- // 账号注册数据
- const state = reactive({
- verifyUsername: false , // 校验用户名是否可用
- codeText: '获取验证码',
- mobileErrorMsg:'',
- usernameErrorMsg:'',
- model: {
- username:'', // 用户名
- password:'', // 密码
- mobile: '', // 手机号
- // code: '', // 验证码
- linkId: uni.getStorageSync("linkId") || undefined, // 邀请码
- },
- rules: {
- username,
- password,
- linkId: {
- rules: [{
- required: true,
- errorMessage: t('account.enter_link_id')
- }]
- }
- // code,
- },
- });
- const smsLoginRef = ref(null);
-
- const emits = defineEmits(['onConfirm']);
-
- const props = defineProps({
- agreeStatus: {
- type: Boolean,
- default: false,
- },
- });
- 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是没有,可以改
- if(data){
- state.usernameErrorMsg = ''
- state.verifyUsername = data
- }else {
- state.usernameErrorMsg = t('account.username_exists')
- state.verifyUsername = data
- }
- }
- // 注册
- async function registerSubmit() {
- console.log(state.model)
- // 参数校验
- const validate = await unref(smsLoginRef)
- .validate()
- .catch((error) => {
- console.log('error: ', error);
- });
- if (!validate) {
- return;
- }
- if (!props.agreeStatus) {
- emits('onConfirm', true)
- //onConfirm(true)
- sheep.$helper.toast(t('account.please_agree'));
- return;
- }
-
- // 看缓存中有没有linkId 如果有的话 加入model传给后台 即为绑定
- // const linkId = uni.getStorageSync("linkId")
- // if (linkId) {
- // state.model.linkId = linkId
- // }
- // else{
- // sheep.$helper.toast('您只能通过分享注册');
- // return false;
- // }
- // 提交数据
- const {
- code
- } = await AuthUtil.register(state.model);
- if (code === 0) {
- closeAuthModal();
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '../index.scss';
- .code-btn-start {
- color: #55b774;
- border: 1px solid #55b774;
- }
- .disabled{
- border: 1px solid #f7f7f7;
- }
- .icon{
- display:flex;
- align-items: center;
- margin-right:7rpx
- }
- .icon image{
- width:35rpx;
- height:35rpx;
- }
- .agreement-box {
- margin: 20rpx 0;
- }
- .login-btn-start {
- background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
- width: 100%;
- height: 80rpx;
- font-size: 32rpx;
- }
- .loginUniForm {
- border: 1rpx solid #d6d6d6;
- padding: 0 15rpx;
- border-radius: 10rpx;
- }
- .loginUniFormItem {
- border-bottom: 1rpx solid #d6d6d6;
- // padding-bottom: 10rpx;
- padding: 10rpx 0;
- }
- .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>
|