修改已知bug
This commit is contained in:
@@ -53,7 +53,7 @@
|
||||
</div>
|
||||
</a-range-picker>
|
||||
</span>
|
||||
<div class="box-top-content">
|
||||
<div class="box-top-content" style="position: relative">
|
||||
<div id="main"></div>
|
||||
<div class="axis-tip"></div>
|
||||
<JLoading :loading="loadingMain">{{this.$t('dataLoading')}}</JLoading>
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user