diff --git a/src/views/DataAnalyse/insight/components/InsightShare.vue b/src/views/DataAnalyse/insight/components/InsightShare.vue index 59dc82c7..4b17b03b 100644 --- a/src/views/DataAnalyse/insight/components/InsightShare.vue +++ b/src/views/DataAnalyse/insight/components/InsightShare.vue @@ -277,7 +277,6 @@ function onUpdateReport() { align-items: center; width: 104px; height: 32px; - border: 1px solid #CCCCCC; border-radius: 4px; background: #FFFFFF; diff --git a/src/views/DataAnalyse/insight/report/section/Overview.vue b/src/views/DataAnalyse/insight/report/section/Overview.vue index a68fa8e3..b9dcb689 100644 --- a/src/views/DataAnalyse/insight/report/section/Overview.vue +++ b/src/views/DataAnalyse/insight/report/section/Overview.vue @@ -106,6 +106,10 @@ function toggleVisibility() { } } + .value { + font-family: Source Han Sans, sans-serif; + } + .section { padding-bottom: 1px; } diff --git a/src/views/DataAnalyse/insight/report/section/conceptDiagnosis/PeopleLike.vue b/src/views/DataAnalyse/insight/report/section/conceptDiagnosis/PeopleLike.vue index 2cd345ae..de056ea4 100644 --- a/src/views/DataAnalyse/insight/report/section/conceptDiagnosis/PeopleLike.vue +++ b/src/views/DataAnalyse/insight/report/section/conceptDiagnosis/PeopleLike.vue @@ -165,24 +165,24 @@ function downloadHotAreaImage() { const textLeft = item.left + item.width * 0.5 - textMetrics.width * 0.5 const textTop = item.top + item.height * 0.5 - ctx.beginPath() - ctx.fillStyle = props.color - ctx.roundRect( - textLeft - 3, - textTop - (textMetrics.actualBoundingBoxAscent + textMetrics.actualBoundingBoxDescent) * 0.5 - 6, - textMetrics.width + 6, - textMetrics.actualBoundingBoxAscent + textMetrics.actualBoundingBoxDescent + 6, - 4 - ) - ctx.fill() - ctx.closePath() + // ctx.beginPath() + // ctx.fillStyle = props.color + // ctx.roundRect( + // textLeft - 3, + // textTop - (textMetrics.actualBoundingBoxAscent + textMetrics.actualBoundingBoxDescent) * 0.5 - 6, + // textMetrics.width + 6, + // textMetrics.actualBoundingBoxAscent + textMetrics.actualBoundingBoxDescent + 6, + // 4 + // ) + // ctx.fill() + // ctx.closePath() ctx.beginPath() ctx.fillStyle = '#FFFFFF' ctx.roundRect( - textLeft - 2, - textTop - (textMetrics.actualBoundingBoxAscent + textMetrics.actualBoundingBoxDescent) * 0.5 - 5, - textMetrics.width + 4, - textMetrics.actualBoundingBoxAscent + textMetrics.actualBoundingBoxDescent + 4, + textLeft - 4, + textTop - (textMetrics.actualBoundingBoxAscent + textMetrics.actualBoundingBoxDescent) * 0.5 - 6, + textMetrics.width + 8, + textMetrics.actualBoundingBoxAscent + textMetrics.actualBoundingBoxDescent + 8, 4 ) ctx.fill() @@ -349,5 +349,6 @@ function downloadDetailTable() { .original-title { justify-content: flex-start !important; + color: #81B74C; }