Merge branch 'dev' of https://git.mesalab.cn/cyber-narrator/cn-ui into dev
# Conflicts: # src/views/charts2/charts/networkOverview/NetworkOverviewLine.vue
This commit is contained in:
@@ -131,13 +131,15 @@ export default {
|
||||
if (!val) {
|
||||
val = this.metricFilter
|
||||
}
|
||||
const conditionStr = this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
|
||||
let condition = ''
|
||||
if (this.$store.getters.getQueryCondition.indexOf('OR') > -1) {
|
||||
condition = this.$store.getters.getQueryCondition.split(/["|'](.*?)["|']/)
|
||||
if (conditionStr.indexOf('OR') > -1) {
|
||||
condition = conditionStr.split(/["|'](.*?)["|']/)
|
||||
} else {
|
||||
condition = this.$store.getters.getQueryCondition
|
||||
condition = conditionStr
|
||||
}
|
||||
const type = this.$store.getters.getDimensionType
|
||||
// const type = this.$store.getters.getDimensionType
|
||||
const type = this.$route.query.dimensionType ? this.$route.query.dimensionType : ''
|
||||
if (this.chartData.id === 24) {
|
||||
this.side = 'client'
|
||||
} else if (this.chartData.id === 29) {
|
||||
|
||||
Reference in New Issue
Block a user