From 0d53c5b9f1087ed7dbcd6579958edd79a91a4e3f Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Thu, 2 Jun 2022 09:24:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=B7=B2=E7=9F=A5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../projectStatusBoard/index.vue | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue index 4d3dadb29..cc6b64298 100644 --- a/jero-web/src/views/projectManagement/projectStatusBoard/index.vue +++ b/jero-web/src/views/projectManagement/projectStatusBoard/index.vue @@ -53,7 +53,7 @@ -
+
{{this.$t('dataLoading')}} @@ -134,21 +134,21 @@ dataIndex: 'projectName', scopedSlots: { customRender: 'projectName' }, width: 180, - ellipsis: true, + ellipsis: true }, { title: this.$t('targetMarket'), align: 'center', dataIndex: 'targetMarket', width: 180, - ellipsis: true, + ellipsis: true }, { align: 'center', dataIndex: 'projectStatus', scopedSlots: { title: 'projectStatusTitle' }, width: 240, - ellipsis: true, + ellipsis: true }, { align: 'center', @@ -202,7 +202,8 @@ getTimeline() { let query = { startTime: this.startTime, - endTime: this.endTime + endTime: this.endTime, + ...this.queryParam } this.loadingMain = true getAction(this.url.timeline, query).then((res) => { @@ -232,7 +233,8 @@ getTimelineList(time) { let query = { startTime: this.startTime, - endTime: this.endTime + endTime: this.endTime, + ...this.queryParam } getAction(this.url.timelineList, query).then((res) => { if (res.success) { @@ -401,10 +403,12 @@ window.open(newUrl.href, '_blank') }, searchQuery() { + this.getTimeline() this.getList() }, searchReset() { this.queryParam = {} + this.getTimeline() this.getList() }, getList() {