File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 136136 </el-tabs >
137137 <!-- 鼠标坐标展示 -->
138138 <div class =" graphLocation" >
139- <span style =" width :60px ;display :inline-block ;" >X:{{parseInt (graphX)}}</span >
140- <span style =" width :60px ;display :inline-block ;" >Y:{{parseInt (graphY)}}</span >
139+ <span style =" width :60px ;display :inline-block ;" >X:{{(graphX)}}</span >
140+ <span style =" width :60px ;display :inline-block ;" >Y:{{(graphY)}}</span >
141141 </div >
142142 <!-- 收缩小工具 -->
143143 <div class =" show-map" ref =" showMap" ></div >
Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ export default {
549549 mouseMove : (sender , me ) => {
550550 // console.log('mouseMove')
551551 this .graphX = Math .ceil (me .graphX );
552- this .graphY = me .graphY ;
552+ this .graphY = Math . ceil ( me .graphY ) ;
553553 },
554554
555555 mouseUp : (sender , evt ) => {
You can’t perform that action at this time.
0 commit comments