diff --git a/src/components/ConnectInfoDialog.vue b/src/components/ConnectInfoDialog.vue index 2b0750e..e276b21 100644 --- a/src/components/ConnectInfoDialog.vue +++ b/src/components/ConnectInfoDialog.vue @@ -3,7 +3,7 @@ ref="dialogRef" @show="onDialogShow" seamless - title="与卡斯柯连接状态信息" + title="与同方连接状态信息" :width="300" :height="0" > diff --git a/src/stores/line-net-store.ts b/src/stores/line-net-store.ts index 0b1d48b..106888c 100644 --- a/src/stores/line-net-store.ts +++ b/src/stores/line-net-store.ts @@ -99,12 +99,11 @@ export const useLineNetStore = defineStore('lineNet', { data.msgs.forEach((item: state.WarnMessage) => { if (!item.occRealConned) { newTip = - newTip + `
${item.lineId}号线路与卡斯柯的实时连接已断开;
`; + newTip + `
${item.lineId}号线路与同方的实时连接已断开;
`; } if (!item.occUnrealConned) { newTip = - newTip + - `
${item.lineId}号线路与卡斯柯的非实时连接已断开
`; + newTip + `
${item.lineId}号线路与同方的非实时连接已断开
`; } }); if (newTip && (newTip !== tip || !msgNotify)) {