Commit 63e8714f by 郑杰

v1.1 版本发布,代码同步后端v1.1版本

parent 2cb2c82e
......@@ -4,5 +4,5 @@ const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"',
BASE_API: '"http://localhost:8000"'
BASE_API: '"http://api.auauz.net"'
})
......@@ -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: '' }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment