fix: 删除npm event相关无用内容
This commit is contained in:
@@ -27,7 +27,7 @@
|
|||||||
:ref="`tab${chart.id}`"
|
:ref="`tab${chart.id}`"
|
||||||
@toggleLoading="toggleLoading"
|
@toggleLoading="toggleLoading"
|
||||||
></network-overview-tabs>
|
></network-overview-tabs>
|
||||||
<npm-app-event-table @getChartData="getChartData"
|
<npm-app-event-table
|
||||||
v-else-if="chart.type === typeMapping.npm.appEventTable"
|
v-else-if="chart.type === typeMapping.npm.appEventTable"
|
||||||
:time-filter="timeFilter"
|
:time-filter="timeFilter"
|
||||||
:chart="chart"
|
:chart="chart"
|
||||||
@@ -242,9 +242,6 @@ export default {
|
|||||||
return disableChartTypes.indexOf(this.chart.type) > -1
|
return disableChartTypes.indexOf(this.chart.type) > -1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted () {
|
|
||||||
this.getChartData()
|
|
||||||
},
|
|
||||||
setup (props) {
|
setup (props) {
|
||||||
const dateRangeValue = 60
|
const dateRangeValue = 60
|
||||||
const { startTime, endTime } = getNowTime(dateRangeValue)
|
const { startTime, endTime } = getNowTime(dateRangeValue)
|
||||||
@@ -259,56 +256,6 @@ export default {
|
|||||||
npmTabChange (index) {
|
npmTabChange (index) {
|
||||||
this.$emit('npmTabChange', index)
|
this.$emit('npmTabChange', index)
|
||||||
},
|
},
|
||||||
reload () {
|
|
||||||
this.getChartData()
|
|
||||||
},
|
|
||||||
/* 参数 extraParams 额外请求参数 */
|
|
||||||
getChartData (url, extraParams = {}, chartTimeFilter) {
|
|
||||||
try {
|
|
||||||
if (chartTimeFilter) {
|
|
||||||
// 图表自带timeFilter刷新时
|
|
||||||
this.queryTimeRange = {
|
|
||||||
startTime: getSecond(chartTimeFilter.startTime),
|
|
||||||
endTime: getSecond(chartTimeFilter.endTime)
|
|
||||||
}
|
|
||||||
} else if (this.timeFilter) {
|
|
||||||
this.queryTimeRange = {
|
|
||||||
startTime: getSecond(this.timeFilter.startTime),
|
|
||||||
endTime: getSecond(this.timeFilter.endTime)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.queryTimeRange = {
|
|
||||||
startTime: getSecond(this.chartTimeFilter.startTime),
|
|
||||||
endTime: getSecond(this.chartTimeFilter.endTime)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const chartParams = this.chart.params
|
|
||||||
// 接口查询参数
|
|
||||||
this.queryParams = {
|
|
||||||
...this.queryTimeRange,
|
|
||||||
...extraParams
|
|
||||||
}
|
|
||||||
let requestUrl = url || chartParams.url
|
|
||||||
|
|
||||||
if (this.chart.type === typeMapping.networkOverview.table) {
|
|
||||||
const chartObj = this.$refs['tab' + this.chart.id]
|
|
||||||
requestUrl = url || chartObj.getCurUrl()
|
|
||||||
this.queryParams = {
|
|
||||||
...chartObj.handleQueryParams(extraParams),
|
|
||||||
...this.queryTimeRange
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (requestUrl) {
|
|
||||||
get(requestUrl, this.queryParams).then(response => {
|
|
||||||
if (response.code === 200) {
|
|
||||||
this.chartData = response.data.result
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
console.error(e)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
resizeLine () {
|
resizeLine () {
|
||||||
this.$nextTick(function () {
|
this.$nextTick(function () {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user