瀏覽代碼

style: 后台预览旋律线样式修改

TIANYONG 6 月之前
父節點
當前提交
20bc1c7091
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/page-instrument/view-detail/smoothAnimation/index.ts

+ 2 - 1
src/page-instrument/view-detail/smoothAnimation/index.ts

@@ -447,7 +447,8 @@ function initCanvasSmooth() {
    smoothDomCtx.lineCap = "round"
    smoothDomCtx.lineJoin = "round"
    // 根据坐标花线
-   drawLines(smoothDomCtx, smoothAnimationState.pointsPos, "rgba(255,255,255,0.6)")
+   const defaultColor = state.isCbsView ? "rgba(0,0,0,0.1)" : "rgba(255,255,255,0.6)";
+   drawLines(smoothDomCtx, smoothAnimationState.pointsPos, defaultColor)
    smoothAnimationState.canvasSmoothDom = smoothDom
 }