浏览代码

图表最新数值名称bug

jwyu 3 年之前
父节点
当前提交
fa9855f547
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/views/hzyb/chart/Detail.vue

+ 1 - 1
src/views/hzyb/chart/Detail.vue

@@ -939,7 +939,7 @@ const pageTouchmove=(e)=>{
             <ul class="list" v-if="resData.ChartInfo.ChartType===1">
                 <li v-for="item in chartData.series" :key="item.name">
                     <p style="color:#333">{{moment(item.LatestDate).format('YYYY-MM-DD')}}</p>
-                    <p :style="{color:item.color,flex:1}">{{item.name}}</p>
+                    <p :style="{color:item.color,flex:1}">{{item.name.length>20?item.name.replace(/<br>/g,''):item.name}}</p>
                     <p style="color:#1F243A">{{item.LatestValue}}</p>
                 </li>
             </ul>