提交 561ea91a 编写于 作者: RedPig97's avatar RedPig97

update: 更新

上级 4114aae0
...@@ -16,10 +16,13 @@ ...@@ -16,10 +16,13 @@
const length = Object.keys(actionContext.layoutData).length; const length = Object.keys(actionContext.layoutData).length;
for (let i = length - 1; i >= 0; i--) { for (let i = length - 1; i >= 0; i--) {
const name = Object.keys(actionContext.layoutData)[i]; const name = Object.keys(actionContext.layoutData)[i];
if (actionContext.layoutData.hasOwnProperty(name) && !Object.is(actionContext.layoutDetailsModel[name].itemType, 'CONTAINER')) { if (actionContext.layoutData.hasOwnProperty(name) && !Object.is(actionContext.layoutModelDetails[name].itemType, 'CONTAINER')) {
actionContext.handleValueChange(name, { name, value: null }); actionContext.handleValueChange({ name, value: null });
} }
} }
actionContext.$nextTick(() => {
actionContext.$forceUpdate();
})
} else { } else {
const parentRef = actionContext.$parent; const parentRef = actionContext.$parent;
if (parentRef.closeView && (parentRef.closeView instanceof Function)) { if (parentRef.closeView && (parentRef.closeView instanceof Function)) {
......
...@@ -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) {
actionContext.handleValueChange(messageKey, { name: messageKey, value: '用户名或密码未配置!' }); actionContext.handleValueChange({ 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) {
actionContext.handleValueChange(messageKey, { name: messageKey, value: '请输入用户名与密码' }); actionContext.handleValueChange({ 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) {
actionContext.handleValueChange(messageKey, { name: messageKey, value: data.message }); actionContext.handleValueChange({ name: messageKey, value: data.message });
} }
} else { } else {
if (messageKey) { if (messageKey) {
actionContext.handleValueChange(messageKey, { name: messageKey, value: actionContext.$t('components.login.loginfailed') }); actionContext.handleValueChange({ name: messageKey, value: actionContext.$t('components.login.loginfailed') });
} }
} }
}); });
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册