diff --git a/src/views/layout/components/Navbar.vue b/src/views/layout/components/Navbar.vue index 5cbaa94d..e9fcb8c8 100644 --- a/src/views/layout/components/Navbar.vue +++ b/src/views/layout/components/Navbar.vue @@ -53,7 +53,7 @@ export default { mounted() { if (this.id.toString() === '3') { this.checkApproval() - this.timer = setInterval(this.checkApproval, 1000 * 60) + this.timer = setInterval(this.checkApproval, 1000 * 60 * 5) } }, beforeDestroy() { @@ -94,7 +94,7 @@ export default { this.$router.push({ path: '/FundApproval2/index' }) setTimeout(this.noticeFund.close(), 1000) }, - duration: 1000 * 60 + duration: 1000 * 60 * 5 }) } }) @@ -108,7 +108,7 @@ export default { this.$router.push({ path: '/InvoiceSettlementApprove/index' }) setTimeout(this.noticeInvoice.close(), 1000) }, - duration: 1000 * 60 + duration: 1000 * 60 * 5 }) } })