提交 9ea9fcc8 编写于 作者: RedPig97's avatar RedPig97

update:更新

上级 a350bb46
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
if (!userNameKey || !passwordKey) { if (!userNameKey || !passwordKey) {
actionContext.$message({ message: '用户名或密码未配置!',type: 'warning'}); actionContext.$message({ message: '用户名或密码未配置!',type: 'warning'});
if (messageKey) { if (messageKey) {
layoutData[messageKey] = '用户名或密码未配置!'; actionContext.handleValueChange(messageKey, { name: messageKey, value: '用户名或密码未配置!' });
} }
} }
const loginname: any = layoutData[userNameKey]; const loginname: any = layoutData[userNameKey];
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
if (!loginname || !password) { if (!loginname || !password) {
actionContext.$message({ message: '请输入用户名与密码',type: 'warning'}); actionContext.$message({ message: '请输入用户名与密码',type: 'warning'});
if (messageKey) { if (messageKey) {
layoutData[messageKey] = '请输入用户名与密码'; actionContext.handleValueChange(messageKey, { name: messageKey, value: '请输入用户名与密码' });
} }
} }
// 清除cookie // 清除cookie
...@@ -58,11 +58,11 @@ ...@@ -58,11 +58,11 @@
const data = error.data; const data = error.data;
if (data && data.message) { if (data && data.message) {
if (messageKey) { if (messageKey) {
layoutData[messageKey] = actionContext.$t('components.login.loginfailed'); actionContext.handleValueChange(messageKey, { name: messageKey, value: data.message });
} }
} else { } else {
if (messageKey) { if (messageKey) {
layoutData[messageKey] = actionContext.$t('components.login.loginfailed'); actionContext.handleValueChange(messageKey, { name: messageKey, value: actionContext.$t('components.login.loginfailed') });
} }
} }
}); });
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册