Commit baa53264 by LJM

bug

parent c9a43842
Showing with 2 additions and 2 deletions
...@@ -295,7 +295,7 @@ export default { ...@@ -295,7 +295,7 @@ export default {
} }
return { return {
supplier_id: Number(localStorage.getItem('supplier_id')) || 0, supplier_id: Number(localStorage.getItem('supplier_id')) || 0,
seconds: 10, seconds: 60,
activeName: "all", activeName: "all",
userinfo: {}, userinfo: {},
collapse: false, collapse: false,
...@@ -499,7 +499,7 @@ export default { ...@@ -499,7 +499,7 @@ export default {
this.seconds--; this.seconds--;
if (this.seconds <= 0) { if (this.seconds <= 0) {
clearInterval(this.timer); clearInterval(this.timer);
this.seconds = 10; this.seconds = 60;
this.getLatestMsg(); this.getLatestMsg();
} }
}, 1000) }, 1000)
......
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 sign in to comment