Commit eb689cfa5046280823f0b6844134a040a42cfa48
Merge branch 'local_devbranch_byft' into 'main_dev'
perf: 优化看板中的地图组件(历史轨迹)点击播放轨迹添加一个Tooltip提示 See merge request yunteng/thingskit-front!1094
Showing
1 changed file
with
5 additions
and
3 deletions
@@ -115,9 +115,11 @@ | @@ -115,9 +115,11 @@ | ||
115 | <Button type="text" class="!px-2 !text-gray-500" @click="handlePlay"> | 115 | <Button type="text" class="!px-2 !text-gray-500" @click="handlePlay"> |
116 | <PlayCircleOutlined v-show="playStatus !== TrackAnimationStatus.PLAY" /> | 116 | <PlayCircleOutlined v-show="playStatus !== TrackAnimationStatus.PLAY" /> |
117 | <PauseCircleOutlined class="!ml-0" v-show="playStatus === TrackAnimationStatus.PLAY" /> | 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 | </Button> | 123 | </Button> |
122 | </div> | 124 | </div> |
123 | <Spin | 125 | <Spin |