#
zjj
2025-06-03 d8c377f4667784058a69adad055e2b8c79fde372
Monitor-APP/pages/home/home.vue
@@ -6,7 +6,8 @@
               <text>智能大屏显示系统</text>
            </view>
            <!-- 日历 -->
            <view class="time-tools">{{calendar}}</view>
            <view class="time-tools">{{version}}</view>
            <view class="version">当前版本:{{socketUrl}}</view>
            <view class="button-left" @click="ejected()"></view>
            <view class="button-right" @click="ejected()"></view>
            <!-- 主视图 -->
@@ -296,7 +297,7 @@
         </view>
      </view>
      <view style="color: #FFF;position: fixed;bottom: 10px;left: 10px;" v-show="timeOut">
         连接超时: {{times}} s
         连接超时,正在重新建立链接:: {{times}}
      </view>
   </view>
</template>
@@ -305,6 +306,7 @@
   import demodata from '@/mockdata/demodata.json';
   import ycqdata from '@/pages/index/data.json';
   import {WebSocketClient} from "@/static/js/WebSocketClient"   
   import WebSocketUtil from './uniWebSocket';
   let socket;
   export default {
      data() {
@@ -372,7 +374,11 @@
            currDate: '',
            locList:[],   
            oldHours:'',
            oldMin:''
            oldMin:'',
            socketClient: null,
            messages: [],
            version:'',
            socketUrl:''
        
            
         }
@@ -382,6 +388,7 @@
         // #ifdef APP-PLUS
         plus.navigator.setFullscreen(true)
         // #endif
         this.getVersion()
      },
      mounted() {
         let that = this
@@ -409,7 +416,8 @@
         that.baseLedId = BaseLedId
         that.basePort = BasePort
         that.baseCrnId = BaseCrnId
         that.webSockerInit();
         that.uniWebSocket();
         // that.webSockerInit()
      },
      onLoad() {         
         setInterval(()=>{
@@ -453,15 +461,102 @@
         // },1000*30)
      },
      methods: {
         uniWebSocket(){
            let that = this;
            that.commonUrl = that.baseIP + ':' +that.basePort + "/" +that.baseUrl
            that.socketUrl = "ws://"+that.commonUrl+"/led/"+that.baseLedId
            // 创建WebSocket实例
                that.socketClient = new WebSocketUtil(that.socketUrl, {
                  // 心跳间隔,默认30秒
                  heartbeatInterval: 30000,
                  // 重连间隔,默认3秒
                  reconnectInterval: 3000,
                  // 最大重连次数,-1表示无限重连
                  maxReconnectAttempts: -1,
                  // 消息回调
                  onMessage: (res) => {
                    try {
                      const data = JSON.parse(res.data);
                      that.showDate(data)
                      // 处理消息...
                    } catch (e) {
                      console.error('解析消息失败', e);
                    }
                  },
                  // 连接打开回调
                  onOpen: (res) => {
                    that.timeOut = false
                    that.times = 0
                    console.log('WebSocket已连接', res);
                  },
                  // 连接错误回调
                  onError: (error) => {
                    console.error('WebSocket错误', error);
                  },
                  // 连接关闭回调
                  onClose: (res) => {
                    that.timeOut = true
                    that.times = that.times+1
                    that.infoType = 0
                    console.log('WebSocket已关闭', res);
                  },
                  // 重连回调
                  onReconnect: (info) => {
                    console.log(`WebSocket重连(${info.attempts}/${info.maxAttempts})`);
                  }
                });
                // 建立连接
                that.socketClient.connect();
         },
         // 发送消息
             sendMessage(content) {
               const message = {
                 type: 'chat',
                 content: content,
                 timestamp: Date.now()
               };
               this.socketClient.send(message)
                 .then(() => {
                   console.log('消息发送成功');
                 })
                 .catch(error => {
                   console.error('消息发送失败', error);
                 });
             },
         webSockerInit(){
            let that = this;
            if(that.baseIP === '' && that.basePort === '' && that.baseUrl ==='' ){
               that.timeOut = true
               that.times = that.times+1
               that.infoType = 0
               return ;
            }
            that.commonUrl = that.baseIP + ':' +that.basePort + "/" +that.baseUrl
            let socketUrl = "ws://"+that.commonUrl+"/led/"+that.baseLedId
                  // socketUrl = "ws://10.0.100.150:8080/gtctu/led/113"
            const ws = new WebSocketClient(socketUrl);
            ws.connect()
            console.log(ws)
            ws.onclose(() =>{
            })
            ws.onmessage((msg)=>{               
             that.timeOut = false
             let data = JSON.parse(msg.data)
             that.showDate(data)
            })
         },
         showDate(data){
            const that = this
             if(data.type === "default"){
                that.chartsData.Pie.series[0].data = data.pie
                that.baseInfo.stockCount = data.stockCunt
@@ -540,8 +635,6 @@
                   that.infoType = 0
                }
             }
            })
         },
         statisticalModel() {
            let that = this
@@ -941,6 +1034,27 @@
               }
            })
         },
         //检测当前平台,如果是安卓则启动安卓更新
         getVersion() {
            let that = this;
            uni.getSystemInfo({
               success: (res) => {
                  if (res.platform == "android") {
                     that.AndroidCheckUpdate();
                  }
               }
            })
         },
         // 获取当前版本号
         AndroidCheckUpdate() {
            let that = this;
            plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
               that.version = wgtinfo.version //客户端版本号
            })
            // setTimeout(()=>{
            //    that.getUpdateVersion()
            // },100)
         },
      }
      
   }
@@ -1112,6 +1226,13 @@
      font-size:1.5vw;
      font-weight: 700;
   }
   .version{
      position: absolute;
      left: 2%;
      top: 2%;
      font-size:1vw;
      transform: scale(0.8);
   }
   .item-subTitle {
      font-size:0.5vw;
      text-indent: 0em;