Merge pull request #7297 from ulleo/dev

fix: 区间条形图跳转设置内字段不正确
This commit is contained in:
ulleo 2023-12-22 17:13:07 +08:00 committed by GitHub
commit d01c29cb38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -389,7 +389,7 @@
<script>
import { queryPanelJumpInfo, queryWithViewId, updateJumpSet } from '@/api/panel/linkJump'
import { groupTree } from '@/api/panel/panel'
import {detailList, getComponentInfo} from '@/api/panel/panelView'
import { getComponentInfo } from '@/api/panel/panelView'
import { mapState } from 'vuex'
import draggable from 'vuedraggable'
@ -544,6 +544,9 @@ export default {
if (xAxis && xAxis[0] && xAxis[0].groupType === 'q') {
checkJumpStr = checkJumpStr + chartDetails.extStack
}
} else if (chartDetails.type === 'bar-time-range') {
checkAllAxisStr = chartDetails.xaxis + chartDetails.drillFields
checkJumpStr = checkAllAxisStr
} else {
checkJumpStr = checkAllAxisStr
}