From ce4d355d8782a7e37108351355a44c99fb5def49 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 20 Apr 2022 15:46:21 +0800 Subject: [PATCH] 29208 --- src/apps/AppFourNeighbor/AppFourNeighbor.vue | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/apps/AppFourNeighbor/AppFourNeighbor.vue b/src/apps/AppFourNeighbor/AppFourNeighbor.vue index 534a2f58..83ce8eda 100644 --- a/src/apps/AppFourNeighbor/AppFourNeighbor.vue +++ b/src/apps/AppFourNeighbor/AppFourNeighbor.vue @@ -8,8 +8,8 @@ - +
@@ -41,7 +41,7 @@ export default { appName: '四邻联动', data() { return { - search: {title: '', linksageDate: ''}, + search: {residentName : '', linksageDate: ''}, showTimeSelect: false, params: {year: true, month: true, day: true, hour: false, minute: false, second: false}, current: 1, @@ -69,7 +69,8 @@ export default { params: { size: 20, current: this.current, - linksageDate: this.search.linksageDate + linksageDate: this.search.linksageDate, + residentName : this.search.residentName }, }) .then((res) => { @@ -87,6 +88,11 @@ export default { this.search.linksageDate = '' this.getListInit() }, + clearName() { + console.log(888) + this.search.residentName = '' + this.getListInit() + }, selectTime(e) { this.search.linksageDate = e.year + '-' + e.month + '-' + e.day this.getListInit()