#
Junjie
10 小时以前 d62f97dabd206364220b74dfa0bb065d4e64dc7b
src/main/webapp/components/MapCanvas.js
@@ -12,6 +12,7 @@
            圈{{ item.loopNo }} |
            站点: {{ item.stationCount || 0 }} |
            任务: {{ item.taskCount || 0 }} |
            手动: {{ item.manualStationCount || 0 }} |
            承载: {{ formatLoadPercent(item.currentLoad) }}
          </div>
        </div>
@@ -129,6 +130,8 @@
        loopList: [],
        totalStationCount: 0,
        taskStationCount: 0,
        manualStationCount: 0,
        occupiedStationCount: 0,
        currentLoad: 0
      },
      showMapToolPanel: false,
@@ -984,6 +987,8 @@
        loopList: loopList,
        totalStationCount: payload.totalStationCount || 0,
        taskStationCount: payload.taskStationCount || 0,
        manualStationCount: payload.manualStationCount || 0,
        occupiedStationCount: payload.occupiedStationCount || 0,
        currentLoad: typeof payload.currentLoad === 'number' ? payload.currentLoad : parseFloat(payload.currentLoad || 0)
      };
      if (this.hoverLoopNo != null) {
@@ -2794,7 +2799,6 @@
    }
  }
});