From c7a95dae2c8c0a2fed4ceb8f7acb097598d346df Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期五, 22 七月 2022 12:59:43 +0800
Subject: [PATCH] up
---
src/samples/sockteStomp.ts | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/src/samples/sockteStomp.ts b/src/samples/sockteStomp.ts
index 234eab0..53fe14b 100644
--- a/src/samples/sockteStomp.ts
+++ b/src/samples/sockteStomp.ts
@@ -107,14 +107,18 @@
}
const writePatient=(resultInfo:any)=>{
+ // 给一个时间变化
+ const da=new Date().toTimeString()
+ console.log(da)
const info={
id:resultInfo.patientInfo===null?0:resultInfo.patientInfo.id,
code:resultInfo.patientInfo===null?'':resultInfo.patientInfo.code,
- name:resultInfo.patientInfo===null?0:resultInfo.patientInfo.patientName,
- patientAvatarIcon:resultInfo.patientInfo===null?0:resultInfo.patientInfo.patientAvatarIcon,
+ name:resultInfo.patientInfo===null?'':resultInfo.patientInfo.patientName,
+ patientAvatarIcon:resultInfo.patientInfo===null?'':resultInfo.patientInfo.patientAvatarIcon,
deviceCode:resultInfo.deviceCode===null?"":resultInfo.deviceCode,
hemoCode:resultInfo.hemoCode===null?"":resultInfo.hemoCode,
- pureWeight:resultInfo.pureWeight===null?"":resultInfo.pureWeight
+ pureWeight:resultInfo.pureWeight===null?"":resultInfo.pureWeight,
+ datetime:da
}
// 写入vuex里
patientInfoStore().setpatientInfo(info)
@@ -162,6 +166,7 @@
isErrConnectBackCalled = true
const pcName= sockteStore().pcName
console.log("链接成功",stompClient,pcName)
+ sockteStore().setsockteIsLink(true)
// 订阅患者信息服务
if(stompClient!==null){
// 订阅患者信息事件
@@ -184,7 +189,7 @@
devices.forEach(de=>{
if(stompClient!==null){
stompClient.subscribe(`/queue/${clientCode}/${de.deviceName}/result`,callback)
- // stompClient.subscribe(`/queue/${clientCode}/${de.deviceName}/keepalive`,callbackState)
+ stompClient.subscribe(`/queue/${clientCode}/${de.deviceName}/keepalive`,callbackState)
stompClient.send(`/app/device/request/${clientCode}/${de.deviceName}`, {}, JSON.stringify({"deviceNumber":de.deviceName}));
}
@@ -195,6 +200,7 @@
const error_callback=function(error:any){
console.log('链接错误',error);
+ sockteStore().setsockteIsLink(false)
setTimeout(()=>{
console.log('60秒之后重连',sockteNum++)
const socket = new WebSocket('ws://hemobs.icoldchain.cn/broadcast')
--
Gitblit v1.8.0