修复样式中多言语显示失效的问题
This commit is contained in:
parent
e39dbcf7e2
commit
5b45af2f73
@ -333,6 +333,9 @@ const handleSignIn = () => {
|
||||
// window.open('http://localhost:5005/api/sysoauth/signin?provider=Gitee&redirectUrl=http://localhost:8888');
|
||||
// };
|
||||
|
||||
//验证码过期显示文本
|
||||
const captchaExpired = computed(() => `"${t('message.account.captchaExpired')}"`);
|
||||
|
||||
// 导出对象
|
||||
defineExpose({ saveTokenAndInitRoutes });
|
||||
</script>
|
||||
@ -407,7 +410,7 @@ defineExpose({ saveTokenAndInitRoutes });
|
||||
@extend .login-content-code;
|
||||
|
||||
&::before {
|
||||
content: t('message.account.captchaExpired');
|
||||
content: v-bind(captchaExpired);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user