28 changed files with 510 additions and 11127 deletions
@ -1,20 +1,39 @@
|
||||
.list{ |
||||
margin-top: -10px; |
||||
max-height: 600px; |
||||
padding: 0 5px; |
||||
overflow: auto; |
||||
.item{ |
||||
display: flex; |
||||
border-bottom: 1px dotted #C7CAD0; |
||||
height: 50px; |
||||
line-height: 50px; |
||||
.text{ |
||||
flex: 1; |
||||
.list { |
||||
margin-top: -10px; |
||||
max-height: 600px; |
||||
padding: 0 5px; |
||||
overflow: auto; |
||||
|
||||
.item { |
||||
display: flex; |
||||
border-bottom: 1px dotted #C7CAD0; |
||||
margin-bottom: 10px; |
||||
.text { |
||||
flex: 1; |
||||
|
||||
.assistant { |
||||
|
||||
span { |
||||
color: #303133; |
||||
margin-right: 6px; |
||||
} |
||||
.state{ |
||||
span{ |
||||
margin-left: 8px; |
||||
} |
||||
|
||||
img { |
||||
width: 16px; |
||||
height: 16px; |
||||
vertical-align: text-bottom; |
||||
} |
||||
text-align: left; |
||||
white-space: nowrap; |
||||
overflow: hidden; |
||||
text-overflow: ellipsis; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.state { |
||||
span { |
||||
margin-left: 8px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
@ -0,0 +1,54 @@
|
||||
import * as signalR from '@microsoft/signalr' |
||||
export default { |
||||
SR: {}, |
||||
// 初始化连接
|
||||
initSR: function () { |
||||
const that = this |
||||
// // 连接 SignalR
|
||||
const options: signalR.IHttpConnectionOptions = { |
||||
accessTokenFactory: async () => { |
||||
return sessionStorage.getItem('token') |
||||
} |
||||
} |
||||
// 1.获取系统中定义的baseURL
|
||||
const url = '/hubs/notification' |
||||
// 2.初始化连接
|
||||
that.SR = new signalR.HubConnectionBuilder() |
||||
.withUrl(url, options) |
||||
.configureLogging(signalR.LogLevel.Information) |
||||
.build(); |
||||
|
||||
// 3. 在停止signalR时,不让onclose内的 start执行
|
||||
(that.SR as any).flag = true |
||||
// 4.启动连接的方法
|
||||
async function start() { |
||||
try { |
||||
await (that.SR as any).start(); |
||||
} catch (err) { |
||||
setTimeout(start, 5000); |
||||
} |
||||
} |
||||
// 5.关闭之后重连
|
||||
(that.SR as any).onclose(async () => { |
||||
if ((that.SR as any).flag) { |
||||
await start(); |
||||
} |
||||
}); |
||||
|
||||
// 6.启动连接
|
||||
start(); |
||||
}, |
||||
// 停止连接,因为调用that.SR.stop(),同时会触发5操作,所以用了flag
|
||||
stopSR: function () { |
||||
// const that = this
|
||||
// (this.SR as any).flag = false
|
||||
// async function stop() {
|
||||
// try {
|
||||
// await (this.SR as any).stop();
|
||||
// } catch (err) {
|
||||
// console.log(err)
|
||||
// }
|
||||
// }
|
||||
this.signalR.stop(); |
||||
} |
||||
}; |
Loading…
Reference in new issue