| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!-- 账号密码登录 accountLogin -->
- <template>
- <view>
- <!-- 标题栏 -->
- <view class="head-box ss-m-b-60 ss-flex-col">
- <view class="ss-flex ss-m-b-20">
- <view class="head-title-active head-title-line" @tap="showAuthModal('smsLogin')">
- 短信登录
- </view>
- <view class="head-title ss-m-r-40 head-title-animation">账号登录</view>
- </view>
- <view class="head-subtitle">如果未设置过密码,请点击忘记密码</view>
- </view>
- <!-- 表单项 -->
- <uni-forms
- ref="accountLoginRef"
- v-model="state.model"
- :rules="state.rules"
- validateTrigger="bind"
- labelWidth="140"
- labelAlign="center"
- >
- <uni-forms-item name="account" label="账号">
- <uni-easyinput placeholder="请输入账号" v-model="state.model.account" :inputBorder="false">
- <template v-slot:right>
- <button class="ss-reset-button forgot-btn" @tap="showAuthModal('resetPassword')">
- 忘记密码
- </button>
- </template>
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item name="password" label="密码">
- <uni-easyinput
- type="password"
- placeholder="请输入密码"
- v-model="state.model.password"
- :inputBorder="false"
- >
- <template v-slot:right>
- <button class="ss-reset-button login-btn-start" @tap="accountLoginSubmit">登录</button>
- </template>
- </uni-easyinput>
- </uni-forms-item>
- </uni-forms>
- </view>
- </template>
- <script setup>
- import { computed, watch, ref, reactive, unref } from 'vue';
- import sheep from '@/sheep';
- import { account, password } from '@/sheep/validate/form';
- import { showAuthModal, closeAuthModal } from '@/sheep/hooks/useModal';
- const accountLoginRef = ref(null);
- const emits = defineEmits(['onConfirm']);
- const props = defineProps({
- agreeStatus: {
- type: Boolean,
- default: false,
- },
- });
- // 数据
- const state = reactive({
- model: {
- account: '', // 账号
- password: '', // 密码
- },
- rules: {
- account,
- password,
- },
- });
- // 1.账号登录
- async function accountLoginSubmit() {
- // 表单验证
- const validate = await unref(accountLoginRef)
- .validate()
- .catch((error) => {
- console.log('error: ', error);
- });
- if (!validate) return;
- // 同意协议
- if (!props.agreeStatus) {
- emits('onConfirm', true)
- sheep.$helper.toast('请勾选同意');
- return;
- }
- // 提交数据
- sheep.$api.user.accountLogin(state.model).then((res) => {
- if (res.error === 0) {
- // sheep.$store('user').getInfo();
- closeAuthModal();
- }
- });
- }
- </script>
- <style lang="scss" scoped>
- @import '../index.scss';
- </style>
|