Karsa 2 年之前
父节点
当前提交
7c68e89b94
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/views/chartShow/index.vue

+ 2 - 2
src/views/chartShow/index.vue

@@ -853,9 +853,9 @@ export default defineComponent({
       
       let axis_tag = axisLabelMap[IsAxis] || '';
       //逆序拼接
-      let order_tag = orderLabelMap[Number(IsOrder)] ? `${axis_tag ? '': ''}${orderLabelMap[Number(IsOrder)]}` : ''
+      let order_tag = orderLabelMap[Number(IsOrder)] ? `${axis_tag ? ',': ''}${orderLabelMap[Number(IsOrder)]}` : ''
       //领先拼接
-      let edb_tag = edbInfoMap[EdbInfoType] ? `${(axis_tag||order_tag) ? '' : '' }${edbInfoMap[EdbInfoType]} ${LeadValue}${edbLeadUnit}` : '';
+      let edb_tag = edbInfoMap[EdbInfoType] ? `${(axis_tag||order_tag) ? ',' : '' }${edbInfoMap[EdbInfoType]} ${LeadValue}${edbLeadUnit}` : '';
 
       return (axis_tag || order_tag || edb_tag) ? `(${axis_tag}${order_tag}${edb_tag})` : ''
     }