fix(UI自动化): 修复输入操作没有显示元素库
This commit is contained in:
parent
147184433a
commit
75f86c5e28
|
@ -1 +1 @@
|
|||
Subproject commit a9ed7c41df8cad6fb62fe20109edefdee8a8b602
|
||||
Subproject commit 5fb1a79839a00cd1ce64ab0aa35b1d00f63c56f6
|
|
@ -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
|
|
@ -44,6 +44,7 @@ const state = {
|
|||
selectUiGroup: '',
|
||||
librarySelectElement: {},
|
||||
uiElementLibraryModuleIds: null,
|
||||
uiElementLibraryElements: null,
|
||||
refreshUiScenario: false,
|
||||
showLicenseCountWarning: false
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue