mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-09-25 06:57:12 +08:00
feat: 优化页面相关功能,新增用户注册,忘记密码,系统字体,系统样式等
This commit is contained in:
@@ -6,10 +6,7 @@
|
||||
<GiForm ref="formRef" v-model="form" :columns="columns">
|
||||
<template #captcha>
|
||||
<a-input v-model="form.captcha" placeholder="请输入验证码" :max-length="6" allow-clear style="flex: 1 1" />
|
||||
<a-button
|
||||
class="captcha-btn" :loading="captchaLoading" :disabled="captchaDisable" size="large"
|
||||
@click="onCaptcha"
|
||||
>
|
||||
<a-button class="captcha-btn" :loading="captchaLoading" :disabled="captchaDisable" size="large" @click="onCaptcha">
|
||||
{{ captchaBtnName }}
|
||||
</a-button>
|
||||
</template>
|
||||
@@ -51,37 +48,48 @@ const [form, resetForm] = useResetReactive({
|
||||
oldPassword: '',
|
||||
newPassword: '',
|
||||
rePassword: '',
|
||||
captchaDisable: false,
|
||||
})
|
||||
|
||||
const columns: ColumnItem[] = reactive([
|
||||
{
|
||||
label: '手机号',
|
||||
label: '新手机号',
|
||||
field: 'phone',
|
||||
type: 'input',
|
||||
span: 24,
|
||||
props: {
|
||||
showWordLimit: false,
|
||||
},
|
||||
rules: [
|
||||
{ required: true, message: '请输入手机号' },
|
||||
{ match: Regexp.Phone, message: '请输入正确的手机号' },
|
||||
{ required: true, message: '请输入新手机号' },
|
||||
{ match: Regexp.Phone, message: '请输入正确的新手机号' },
|
||||
],
|
||||
hide: () => {
|
||||
return verifyType.value !== 'phone'
|
||||
},
|
||||
props: {
|
||||
allowClear: true,
|
||||
maxLength: 11,
|
||||
onInput: () => {
|
||||
form.captchaDisable = Regexp.Phone.test(form.phone)
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '邮箱',
|
||||
label: '新邮箱',
|
||||
field: 'email',
|
||||
type: 'input',
|
||||
span: 24,
|
||||
rules: [
|
||||
{ required: true, message: '请输入邮箱' },
|
||||
{ match: Regexp.Email, message: '请输入正确的邮箱' },
|
||||
{ required: true, message: '请输入新邮箱' },
|
||||
{ match: Regexp.Email, message: '请输入正确的新邮箱' },
|
||||
],
|
||||
hide: () => {
|
||||
return verifyType.value !== 'email'
|
||||
},
|
||||
props: {
|
||||
allowClear: true,
|
||||
onInput: () => {
|
||||
form.captchaDisable = Regexp.Email.test(form.email)
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
label: '验证码',
|
||||
@@ -165,20 +173,13 @@ const onCaptcha = async () => {
|
||||
const captchaTimer = ref()
|
||||
const captchaTime = ref(60)
|
||||
const captchaBtnName = ref('获取验证码')
|
||||
const captchaDisable = ref(false)
|
||||
|
||||
// 重置验证码
|
||||
const resetCaptcha = () => {
|
||||
window.clearInterval(captchaTimer.value)
|
||||
captchaTime.value = 60
|
||||
captchaBtnName.value = '获取验证码'
|
||||
captchaDisable.value = false
|
||||
}
|
||||
|
||||
// 重置
|
||||
const reset = () => {
|
||||
formRef.value?.formRef?.resetFields()
|
||||
resetForm()
|
||||
resetCaptcha()
|
||||
form.captchaDisable = true
|
||||
}
|
||||
|
||||
// 获取验证码
|
||||
@@ -189,14 +190,16 @@ const getCaptcha = async (captchaReq: BehaviorCaptchaReq) => {
|
||||
captchaBtnName.value = '发送中...'
|
||||
if (verifyType.value === 'phone') {
|
||||
// await getSmsCaptcha(form.phone, captchaReq)
|
||||
Message.success('短信发送成功,演示默认【111111】')
|
||||
form.captcha = '111111'
|
||||
} else if (verifyType.value === 'email') {
|
||||
await getEmailCaptcha(form.email, captchaReq)
|
||||
Message.success('邮件发送成功,请前往邮箱查看验证码')
|
||||
}
|
||||
captchaLoading.value = false
|
||||
captchaDisable.value = true
|
||||
form.captchaDisable = false
|
||||
captchaBtnName.value = `获取验证码(${(captchaTime.value -= 1)}s)`
|
||||
// Message.success('发送成功')
|
||||
Message.success('仅提供效果演示,实际使用请查看代码取消相关注释')
|
||||
// Message.success('仅提供效果演示,实际使用请查看代码取消相关注释')
|
||||
captchaTimer.value = window.setInterval(() => {
|
||||
captchaTime.value -= 1
|
||||
captchaBtnName.value = `获取验证码(${captchaTime.value}s)`
|
||||
@@ -211,6 +214,13 @@ const getCaptcha = async (captchaReq: BehaviorCaptchaReq) => {
|
||||
}
|
||||
}
|
||||
|
||||
// 取消
|
||||
const reset = () => {
|
||||
formRef.value?.formRef?.resetFields()
|
||||
resetForm()
|
||||
resetCaptcha()
|
||||
}
|
||||
|
||||
// 保存
|
||||
const save = async () => {
|
||||
const isInvalid = await formRef.value?.formRef?.validate()
|
||||
|
Reference in New Issue
Block a user