forked from github/dataease
fix(视图): 修复新建视图控制台有异常打印问题
This commit is contained in:
parent
83025ea4b9
commit
6f3dd126f5
@ -134,12 +134,12 @@ export default {
|
|||||||
linkJumpSetShow() {
|
linkJumpSetShow() {
|
||||||
return this.curComponent.type === 'view' &&
|
return this.curComponent.type === 'view' &&
|
||||||
!this.jumpExcludeViewType.includes(this.curComponent.propValue.innerType) &&
|
!this.jumpExcludeViewType.includes(this.curComponent.propValue.innerType) &&
|
||||||
!(this.curComponent.propValue.innerType.includes('table') && this.curComponent.propValue.render === 'echarts')
|
!(this.curComponent.propValue.innerType && this.curComponent.propValue.innerType.includes('table') && this.curComponent.propValue.render === 'echarts')
|
||||||
},
|
},
|
||||||
linkageSettingShow() {
|
linkageSettingShow() {
|
||||||
return this.curComponent.type === 'view' &&
|
return this.curComponent.type === 'view' &&
|
||||||
!this.linkageExcludeViewType.includes(this.curComponent.propValue.innerType) &&
|
!this.linkageExcludeViewType.includes(this.curComponent.propValue.innerType) &&
|
||||||
!(this.curComponent.propValue.innerType.includes('table') && this.curComponent.propValue.render === 'echarts')
|
!(this.curComponent.propValue.innerType && this.curComponent.propValue.innerType.includes('table') && this.curComponent.propValue.render === 'echarts')
|
||||||
},
|
},
|
||||||
panelInfo() {
|
panelInfo() {
|
||||||
return this.$store.state.panel.panelInfo
|
return this.$store.state.panel.panelInfo
|
||||||
|
Loading…
Reference in New Issue
Block a user