From c9cee98cdc27d415a7b3c86598ae316acc8efd7e Mon Sep 17 00:00:00 2001 From: Dong Xia Date: Fri, 17 Feb 2023 09:39:11 +0000 Subject: [PATCH] =?UTF-8?q?=E6=A0=B9=E6=8D=AEip=E7=AD=9B=E9=80=89=E5=AE=A1?= =?UTF-8?q?=E8=AE=A1=E6=97=A5=E5=BF=97=E5=8A=9F=E8=83=BD=E5=AE=9E=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Dong Xia --- src/pages/audit/index.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pages/audit/index.vue b/src/pages/audit/index.vue index 66310a1..a525dbf 100644 --- a/src/pages/audit/index.vue +++ b/src/pages/audit/index.vue @@ -134,6 +134,16 @@ export default { }) }, methods: { + changeIP() { + if (this.timer != null) { + clearTimeout(this.timer) + this.timer = null + } + this.timer = setTimeout(this.handleFilter, 500) + }, + calendarChange(val) { + this.dates = val + }, getAuditList() { this.loading = true const param = { -- Gitee