chenyao
2025-03-15 e9c5da455e223c6463b8d64d5663221b19ceb297
src/mqtt/config.ts
@@ -15,11 +15,11 @@
  resubscribe: true, // 断开重连后,再次订阅原订阅
  reconnectPeriod: 10000, // 重连间隔时间: 5s
  keepalive: 5, // 心跳间隔时间:1s
  clientId: window?.globalApiConfig?.mqttConfig?.clientId || 'DroneWeb',
  username: window?.globalApiConfig?.mqttConfig?.username || 'root',
  password: window?.globalApiConfig?.mqttConfig?.password || 'root',
  host: window?.globalApiConfig?.mqttConfig?.host || '139.196.74.78',
  protocol: window?.globalApiConfig?.mqttConfig?.protocol || 'wss',
  clientId: 'DroneWeb',
  username: 'root',
  password: 'root',
  host: 'dev.jxpskj.com',
  protocol: 'wss',
  // 8083
  port: window?.globalApiConfig?.mqttConfig?.port || 8084,
  port: 8084,
}