From ce4b5cef19570e243a1a46e6b4d3e66b6c9c7121 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期二, 23 一月 2024 19:04:48 +0800
Subject: [PATCH] 更新细节
---
src/samples/sockteStomp.ts | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/samples/sockteStomp.ts b/src/samples/sockteStomp.ts
index d85e949..5f6a3f9 100644
--- a/src/samples/sockteStomp.ts
+++ b/src/samples/sockteStomp.ts
@@ -1,6 +1,5 @@
import Stomp from 'stompjs'
import os from 'os'
-import { ipcRenderer } from 'electron'
let stompClient: Stomp.Client | null=null
import { confingInfoStore } from '@/stores/StoresConfing'
@@ -79,7 +78,7 @@
}
const writePatient=(resultInfo:any)=>{
// 给一个时间变化
- const da=new Date().toTimeString()
+ const da=new Date()
console.log(da)
const info={
id:resultInfo.patientInfo===null?0:resultInfo.patientInfo.id,
@@ -103,7 +102,9 @@
txq:resultInfo.txq,
medMethod:resultInfo.medMethod,
glq:resultInfo.glq,
- preBP:resultInfo.preBP
+ preBP:resultInfo.preBP,
+ nextRecordDate:resultInfo.nextRecordDate,
+ actuallyClliang:resultInfo.actuallyClliang
}
// 写入vuex里
patientInfoStore().setpatientInfo(info)
@@ -170,7 +171,7 @@
// 创建客户端链接
const creatorClient=(configObj:any)=>{
config=configObj
- devices=configObj.deviceList
+ // devices=configObj.deviceList
clientCode=configObj.clientCode
console.log(devices,'设备列表','chong')
const socket = new WebSocket('ws://hemobs.icoldchain.cn/broadcast')
--
Gitblit v1.8.0