Commit e417314a01aa0938b36de878b17abe77055b5429

Authored by fengwotao
1 parent d0de646d

perf: 优化看板中的地图组件(历史轨迹)点击播放轨迹添加一个Tooltip提示

... ... @@ -115,9 +115,11 @@
115 115 <Button type="text" class="!px-2 !text-gray-500" @click="handlePlay">
116 116 <PlayCircleOutlined v-show="playStatus !== TrackAnimationStatus.PLAY" />
117 117 <PauseCircleOutlined class="!ml-0" v-show="playStatus === TrackAnimationStatus.PLAY" />
118   - <span>
119   - {{ playStatus !== TrackAnimationStatus.PLAY ? '播放轨迹' : '暂停播放' }}
120   - </span>
  118 + <Tooltip title="请先在左侧配置绑定数据">
  119 + <span>
  120 + {{ playStatus !== TrackAnimationStatus.PLAY ? '播放轨迹' : '暂停播放' }}
  121 + </span>
  122 + </Tooltip>
121 123 </Button>
122 124 </div>
123 125 <Spin
... ...