|
@@ -1,13 +1,16 @@
|
|
|
<script setup lang="ts">
|
|
|
+import { useI18n } from "vue-i18n";
|
|
|
import { ref, reactive } from "vue";
|
|
|
import Motion from "../utils/motion";
|
|
|
import { updateRules } from "../utils/rule";
|
|
|
import { message } from "@pureadmin/components";
|
|
|
import type { FormInstance } from "element-plus";
|
|
|
import { useVerifyCode } from "../utils/verifyCode";
|
|
|
+import { $t, transformI18n } from "/@/plugins/i18n";
|
|
|
import { useUserStoreHook } from "/@/store/modules/user";
|
|
|
import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
|
|
|
|
|
|
+const { t } = useI18n();
|
|
|
const checked = ref(false);
|
|
|
const loading = ref(false);
|
|
|
const ruleForm = reactive({
|
|
@@ -23,9 +26,9 @@ const repeatPasswordRule = [
|
|
|
{
|
|
|
validator: (rule, value, callback) => {
|
|
|
if (value === "") {
|
|
|
- callback(new Error("请输入确认密码"));
|
|
|
+ callback(new Error(transformI18n($t("login.passwordSureReg"))));
|
|
|
} else if (ruleForm.password !== value) {
|
|
|
- callback(new Error("两次密码不一致!"));
|
|
|
+ callback(new Error(transformI18n($t("login.passwordDifferentReg"))));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
@@ -42,12 +45,12 @@ const onUpdate = async (formEl: FormInstance | undefined) => {
|
|
|
if (checked.value) {
|
|
|
// 模拟请求,需根据实际开发进行修改
|
|
|
setTimeout(() => {
|
|
|
- message.success("注册成功");
|
|
|
+ message.success(transformI18n($t("login.registerSuccess")));
|
|
|
loading.value = false;
|
|
|
}, 2000);
|
|
|
} else {
|
|
|
loading.value = false;
|
|
|
- message.warning("请勾选隐私政策");
|
|
|
+ message.warning(transformI18n($t("login.tickPrivacy")));
|
|
|
}
|
|
|
} else {
|
|
|
loading.value = false;
|
|
@@ -71,13 +74,19 @@ function onBack() {
|
|
|
>
|
|
|
<Motion>
|
|
|
<el-form-item
|
|
|
- :rules="[{ required: true, message: '请输入账号', trigger: 'blur' }]"
|
|
|
+ :rules="[
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: transformI18n($t('login.usernameReg')),
|
|
|
+ trigger: 'blur'
|
|
|
+ }
|
|
|
+ ]"
|
|
|
prop="username"
|
|
|
>
|
|
|
<el-input
|
|
|
clearable
|
|
|
v-model="ruleForm.username"
|
|
|
- placeholder="账号"
|
|
|
+ :placeholder="t('login.username')"
|
|
|
:prefix-icon="useRenderIcon('user')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -88,7 +97,7 @@ function onBack() {
|
|
|
<el-input
|
|
|
clearable
|
|
|
v-model="ruleForm.phone"
|
|
|
- placeholder="手机号码"
|
|
|
+ :placeholder="t('login.phone')"
|
|
|
:prefix-icon="useRenderIcon('iphone')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -100,7 +109,7 @@ function onBack() {
|
|
|
<el-input
|
|
|
clearable
|
|
|
v-model="ruleForm.verifyCode"
|
|
|
- placeholder="短信验证码"
|
|
|
+ :placeholder="t('login.smsVerifyCode')"
|
|
|
:prefix-icon="
|
|
|
useRenderIcon('ri:shield-keyhole-line', { online: true })
|
|
|
"
|
|
@@ -110,7 +119,11 @@ function onBack() {
|
|
|
class="ml-2"
|
|
|
@click="useVerifyCode().start(ruleFormRef, 'phone')"
|
|
|
>
|
|
|
- {{ text }}
|
|
|
+ {{
|
|
|
+ text.length > 0
|
|
|
+ ? text + t("login.info")
|
|
|
+ : t("login.getVerifyCode")
|
|
|
+ }}
|
|
|
</el-button>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
@@ -122,7 +135,7 @@ function onBack() {
|
|
|
clearable
|
|
|
show-password
|
|
|
v-model="ruleForm.password"
|
|
|
- placeholder="密码"
|
|
|
+ :placeholder="t('login.password')"
|
|
|
:prefix-icon="useRenderIcon('lock')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -134,7 +147,7 @@ function onBack() {
|
|
|
clearable
|
|
|
show-password
|
|
|
v-model="ruleForm.repeatPassword"
|
|
|
- placeholder="确认密码"
|
|
|
+ :placeholder="t('login.sure')"
|
|
|
:prefix-icon="useRenderIcon('lock')"
|
|
|
/>
|
|
|
</el-form-item>
|
|
@@ -142,8 +155,12 @@ function onBack() {
|
|
|
|
|
|
<Motion :delay="300">
|
|
|
<el-form-item>
|
|
|
- <el-checkbox v-model="checked"> 我已仔细阅读并接受 </el-checkbox>
|
|
|
- <el-button link type="primary"> 《隐私政策》 </el-button>
|
|
|
+ <el-checkbox v-model="checked">
|
|
|
+ {{ t("login.readAccept") }}
|
|
|
+ </el-checkbox>
|
|
|
+ <el-button link type="primary">
|
|
|
+ {{ t("login.privacyPolicy") }}
|
|
|
+ </el-button>
|
|
|
</el-form-item>
|
|
|
</Motion>
|
|
|
|
|
@@ -156,7 +173,7 @@ function onBack() {
|
|
|
:loading="loading"
|
|
|
@click="onUpdate(ruleFormRef)"
|
|
|
>
|
|
|
- 确定
|
|
|
+ {{ t("login.definite") }}
|
|
|
</el-button>
|
|
|
</el-form-item>
|
|
|
</Motion>
|
|
@@ -164,7 +181,7 @@ function onBack() {
|
|
|
<Motion :delay="400">
|
|
|
<el-form-item>
|
|
|
<el-button class="w-full" size="default" @click="onBack">
|
|
|
- 返回
|
|
|
+ {{ t("login.back") }}
|
|
|
</el-button>
|
|
|
</el-form-item>
|
|
|
</Motion>
|