()
| 126 | const socket = this.socket; |
| 127 | |
| 128 | const showConnecting = () => { |
| 129 | if (this.closeFn) { |
| 130 | return; |
| 131 | } |
| 132 | this.closeFn = showGlobalLoading(t('正在重新链接')); |
| 133 | }; |
| 134 | |
| 135 | const closeConnecting = () => { |
| 136 | if (this.closeFn && typeof this.closeFn === 'function') { |