fix(UI自动化): 修复输入操作没有显示元素库

This commit is contained in:
nathan.liu 2022-04-14 19:55:01 +08:00 committed by 刘瑞斌
parent 147184433a
commit 75f86c5e28
5 changed files with 6 additions and 4 deletions

@ -1 +1 @@
Subproject commit a9ed7c41df8cad6fb62fe20109edefdee8a8b602
Subproject commit 5fb1a79839a00cd1ce64ab0aa35b1d00f63c56f6

View File

@ -78,7 +78,7 @@ export default {
return false;
}
},
//
//
clearable: {
type: Boolean,
default() {
@ -289,7 +289,7 @@ export default {
this.returnDatas = null;
this.returnDataKeys = '';
this.popoverHide();
this.$emit('clean')
},
//: key
setKey(thisKey) {

@ -1 +1 @@
Subproject commit 4acca8e4ba0b26c496687bf3cb24fe135a02f7f3
Subproject commit 099601522201b1df46591a0fd23aa45b356a733e

View File

@ -44,6 +44,7 @@ const state = {
selectUiGroup: '',
librarySelectElement: {},
uiElementLibraryModuleIds: null,
uiElementLibraryElements: null,
refreshUiScenario: false,
showLicenseCountWarning: false
}

View File

@ -26,6 +26,7 @@ const mutations = {
setScenarioDefinition: (state, value) => state.scenarioDefinition = value,
setGroupedCmd: (state, value) => state.groupedCmd = value,
setUiElementLibraryModuleIds: (state, value) => state.uiElementLibraryModuleIds = value,
setUiElementLibraryElements: (state, value) => state.uiElementLibraryElements = value,
setRefreshUiScenario: (state, value) => state.refreshUiScenario = value,
setSelectUiGroup: (state, value) => state.selectUiGroup = value,
setShowLicenseCountWarning: (state, value) => state.showLicenseCountWarning = value,