forked from github/dataease
fix(仪表板): 修复汇总表配置跳转字段后切换明细表跳转字段未清空
This commit is contained in:
parent
ea17177c08
commit
feb67dba6e
@ -194,8 +194,8 @@ export default {
|
|||||||
if (this.editStatus&&this.canEdit===false) {
|
if (this.editStatus&&this.canEdit===false) {
|
||||||
this.canEdit = true
|
this.canEdit = true
|
||||||
this.element['editing'] = true
|
this.element['editing'] = true
|
||||||
this.reShow()
|
|
||||||
this.myValue = this.element.propValue.textValue
|
this.myValue = this.element.propValue.textValue
|
||||||
|
this.reShow()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
reShow() {
|
reShow() {
|
||||||
|
@ -362,7 +362,9 @@ export default {
|
|||||||
const checkAllAxisStr = chartDetails.xaxis + chartDetails.xaxisExt + chartDetails.yaxis + chartDetails.yaxisExt + chartDetails.drillFields
|
const checkAllAxisStr = chartDetails.xaxis + chartDetails.xaxisExt + chartDetails.yaxis + chartDetails.yaxisExt + chartDetails.drillFields
|
||||||
let checkJumpStr
|
let checkJumpStr
|
||||||
if (chartDetails.type === 'table-pivot') {
|
if (chartDetails.type === 'table-pivot') {
|
||||||
checkJumpStr = chartDetails.yaxis + chartDetails.yaxisExt
|
checkJumpStr = chartDetails.yaxis + chartDetails.yaxisExt + chartDetails.drillFields
|
||||||
|
}else if(chartDetails.type === 'table-info') {
|
||||||
|
checkJumpStr = chartDetails.xaxis + chartDetails.drillFields
|
||||||
}else {
|
}else {
|
||||||
checkJumpStr = checkAllAxisStr
|
checkJumpStr = checkAllAxisStr
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user