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

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

View File

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

View File

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