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() {