diff --git a/frontend/src/components/canvas/components/TextAttr.vue b/frontend/src/components/canvas/components/TextAttr.vue index 6ebdf399ca..ab6926eefb 100644 --- a/frontend/src/components/canvas/components/TextAttr.vue +++ b/frontend/src/components/canvas/components/TextAttr.vue @@ -218,7 +218,7 @@ export default { innerOpacity: 0, mainWidthOffset: 600, initFontSize: 12, - miniFontSize: 12, + miniFontSize: 0, maxFontSize: 128, textAlignOptions: [ { diff --git a/frontend/src/components/canvas/custom-component/DeRichTextView.vue b/frontend/src/components/canvas/custom-component/DeRichTextView.vue index 5ccbf081b9..1c78d8ac4f 100644 --- a/frontend/src/components/canvas/custom-component/DeRichTextView.vue +++ b/frontend/src/components/canvas/custom-component/DeRichTextView.vue @@ -194,8 +194,8 @@ export default { if (this.editStatus&&this.canEdit===false) { this.canEdit = true this.element['editing'] = true - this.reShow() this.myValue = this.element.propValue.textValue + this.reShow() } }, reShow() { diff --git a/frontend/src/views/panel/LinkJumpSet/index.vue b/frontend/src/views/panel/LinkJumpSet/index.vue index 26cef164c6..62c567cce5 100644 --- a/frontend/src/views/panel/LinkJumpSet/index.vue +++ b/frontend/src/views/panel/LinkJumpSet/index.vue @@ -362,8 +362,10 @@ export default { const checkAllAxisStr = chartDetails.xaxis + chartDetails.xaxisExt + chartDetails.yaxis + chartDetails.yaxisExt + chartDetails.drillFields let checkJumpStr if (chartDetails.type === 'table-pivot') { - checkJumpStr = chartDetails.yaxis + chartDetails.yaxisExt - } else { + checkJumpStr = chartDetails.yaxis + chartDetails.yaxisExt + chartDetails.drillFields + }else if(chartDetails.type === 'table-info') { + checkJumpStr = chartDetails.xaxis + chartDetails.drillFields + }else { checkJumpStr = checkAllAxisStr } // 获取可关联的仪表板