v1.1 版本发布,代码同步后端v1.1版本
This commit is contained in:
@@ -60,7 +60,7 @@ export default {
|
||||
beforeDestroy: function() {
|
||||
// 页面离开时断开连接,清除定时器
|
||||
this.disconnect()
|
||||
clearInterval(this.timer)
|
||||
window.clearInterval(this.timer)
|
||||
},
|
||||
methods: {
|
||||
time(date) {
|
||||
@@ -69,7 +69,7 @@ export default {
|
||||
initWebSocket() {
|
||||
this.connection(this)
|
||||
// 断开重连机制,尝试发送消息,捕获异常发生时重连
|
||||
this.timer = setInterval(() => {
|
||||
this.timer = window.setInterval(() => {
|
||||
try {
|
||||
this.stompClient.send('test')
|
||||
} catch (err) {
|
||||
@@ -103,7 +103,7 @@ export default {
|
||||
disconnect() {
|
||||
if (this.stompClient != null) {
|
||||
this.stompClient.disconnect()
|
||||
clearInterval(this.timer)
|
||||
window.clearInterval(this.timer)
|
||||
}
|
||||
},
|
||||
getColor(level) {
|
||||
|
||||
@@ -60,7 +60,7 @@ export default {
|
||||
loading: false, dialog: false, title: '修改邮箱', form: { pass: '', email: '', code: '' },
|
||||
user: { email: '', password: '' }, codeLoading: false,
|
||||
codeData: { type: 'email', value: '' },
|
||||
buttonName: '获取验证码', isDisabled: false, time: 60,
|
||||
buttonName: '获取验证码', isDisabled: false, time: 5,
|
||||
rules: {
|
||||
pass: [
|
||||
{ required: true, validator: validatePass, trigger: 'blur' }
|
||||
@@ -98,9 +98,9 @@ export default {
|
||||
--_this.time
|
||||
if (_this.time < 0) {
|
||||
_this.buttonName = '重新发送'
|
||||
_this.time = 60
|
||||
_this.time = 5
|
||||
_this.isDisabled = false
|
||||
clearInterval(_this.timer)
|
||||
window.clearInterval(_this.timer)
|
||||
}
|
||||
}, 1000)
|
||||
}).catch(err => {
|
||||
@@ -135,8 +135,8 @@ export default {
|
||||
resetForm() {
|
||||
this.dialog = false
|
||||
this.$refs['form'].resetFields()
|
||||
clearInterval(this.timer)
|
||||
this.time = 60
|
||||
window.clearInterval(this.timer)
|
||||
this.time = 5
|
||||
this.buttonName = '获取验证码'
|
||||
this.isDisabled = false
|
||||
this.form = { pass: '', email: '', code: '' }
|
||||
|
||||
Reference in New Issue
Block a user