Bladeren bron

登录英文

CzRger 9 maanden geleden
bovenliggende
commit
2b7567c99f

+ 4 - 2
snowy-admin-web/src/locales/lang/en.js

@@ -30,7 +30,7 @@ export default {
 		bizUser: 'bizUser'
 	},
 	login: {
-		signInTitle: 'Sign in',
+		signInTitle: 'Login',
 		forgetPassword: 'Forget password',
 		signIn: 'Sign in',
 		signInOther: 'Sign in with',
@@ -53,7 +53,9 @@ export default {
 		emailPlaceholder: 'Please input a email',
 		emailCodePlaceholder: 'Please input a Email code',
 		restPhoneType: 'For phone rest',
-		restEmailType: 'For email rest'
+		restEmailType: 'For email rest',
+		noAccount: 'Don\'t have an account ?',
+		registerAccount: 'Sing Up'
 	},
 	user: {
 		userStatus: 'User Status',

+ 4 - 2
snowy-admin-web/src/locales/lang/zh-cn.js

@@ -32,7 +32,7 @@ export default {
 		bizUser: '人员'
 	},
 	login: {
-		signInTitle: '用户登录',
+		signInTitle: '账号登录',
 		forgetPassword: '忘记密码',
 		signIn: '登录',
 		signInOther: '其他登录方式',
@@ -55,7 +55,9 @@ export default {
 		emailPlaceholder: '请输入邮箱号',
 		emailCodePlaceholder: '请输入邮件验证码',
 		restPhoneType: '手机号找回',
-		restEmailType: '邮箱找回'
+		restEmailType: '邮箱找回',
+		noAccount: '还没有账号?',
+		registerAccount: '立即注册'
 	},
 	user: {
 		userStatus: '用户状态',

+ 4 - 4
snowy-admin-web/src/views/auth/login/single-window-login.vue

@@ -16,7 +16,7 @@
 				<div class="swl-content-login-right">
 					<div class="swlclr-login">
 						<div class="swlclr-login-div">
-							<div class="swlclr-login-div-title">账号登录</div>
+							<div class="swlclr-login-div-title">{{ $t('login.signInTitle') }}</div>
 							<a-form class="login-form" ref="loginForm" :model="ruleForm" :rules="rules">
 								<a-form-item name="account">
 									<a-input
@@ -62,7 +62,7 @@
 										</a-col>
 									</a-row>
 								</a-form-item>
-								<div class="agree">
+								<div class="agree" v-if="config.lang === 'zh-cn'">
 									<a-checkbox v-model:checked="loginAgree"/>
 									<span style="color:#222222">已阅读并同意</span>
 									<span style="color: #096ac6;text-decoration:underline dotted; cursor:pointer;" @click="agreeTipsYhfwxy = true">《用户服务协议》</span>
@@ -72,7 +72,7 @@
 								<a-button type="primary" class="w-full mt-4" :loading="loading" round size="large" @click="login">
 									{{ $t('login.signIn') }}
 								</a-button>
-								<div class="zhuce">还没有账号?<span>立即注册</span></div>
+								<div class="zhuce">{{ $t('login.noAccount') }}<span>{{ $t('login.registerAccount') }}</span></div>
 							</a-form>
 						</div>
 					</div>
@@ -280,7 +280,7 @@
 	//登陆
 	const loginForm = ref()
 	const login = async () => {
-		if (loginAgree.value) {
+		if (loginAgree.value || config.value.lang === 'en') {
 			loginForm.value
 			.validate()
 			.then(async () => {