Browse Source

修改感知事件分析页面,下方枢纽立交的拉动bug限制

develop
wangsixiang 5 months ago
parent
commit
ee744d9c9f
  1. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/analysis/progress/index.vue

2
ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/analysis/progress/index.vue

@ -56,7 +56,7 @@ export default {
ondrag(e,type) { ondrag(e,type) {
if(e.pageX > 0){ if(e.pageX > 0){
const step = (Math.ceil((e.pageX-30) / this.tagWidth) - 1) const step = (Math.ceil((e.pageX-30) / this.tagWidth) - 1)
if(step>14 || step < 0){ if(step>16 || step < 0){
return return
} }
if(type === 'B'){ if(type === 'B'){

Loading…
Cancel
Save