浏览代码

图表标识调整

hbchen 9 月之前
父节点
当前提交
6f5f6b4631
共有 2 个文件被更改,包括 19 次插入6 次删除
  1. 13 0
      src/CustomElement/EtaTable.ce.vue
  2. 6 6
      src/hooks/chart/render.js

+ 13 - 0
src/CustomElement/EtaTable.ce.vue

@@ -17,11 +17,24 @@ const showData = ref(false);
 const sheetRef=ref(null)
 const sheetFooter=ref(null)
 
+const setDefaultSource=(sourceText)=>{
+  return JSON.stringify({
+    isShow: true,
+    text: sourceText,
+    color: "#606266",
+    fontSize: 9
+  })
+}
+
 async function getTableData(){
     const res = await infoByCode({  UniqueCode: params.code, FromScene: Number(params.fromScene||'') });
     if(res.Ret !== 200) return
 
     info.value=res.Data
+    if(!info.value.SourcesFrom){
+        info.value.SourcesFrom = setDefaultSource(res.Data.ExcelSource||'')
+    }
+
     showData.value = true;
     nextTick(()=>{
         console.log(sheetRef.value.clientWidth);

+ 6 - 6
src/hooks/chart/render.js

@@ -665,12 +665,12 @@ function setSplineOpt(e){
             visible:true,
             LatestDate:item.LatestDate,
             LatestValue:item.LatestValue,
-            marker: {
-                enabled:chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none',
+            marker:chartTheme && chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none'?{
+                enabled:true,
                 symbol: chartTheme.lineOptionList[index].markType || 'circle',
                 fillColor:chartTheme.lineOptionList[index].markColor,
                 radius: chartTheme.lineOptionList[index].markSize
-            },
+            }:{},
             ...predict_params
         }
         item.DataList = item.DataList || [];
@@ -856,12 +856,12 @@ function setSeasonOpt(e){
                 lineWidth: (chartTheme&&chartTheme.lineOptionList[index].lineWidth) || 1,
                 color:colorsArr.slice(-chartDataHandle.length)[index],                
                 visible:true,
-                marker: {
-                    enabled:chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none',
+                marker:chartTheme && chartTheme.lineOptionList[index].dataMark && chartTheme.lineOptionList[index].dataMark!='none'?{
+                    enabled:true,
                     symbol: chartTheme.lineOptionList[index].markType || 'circle',
                     fillColor:chartTheme.lineOptionList[index].markColor,
                     radius: chartTheme.lineOptionList[index].markSize
-                },
+                }:{},
                 ...predict_params
             }
             item.DataList=item.DataList||[]