refactor(测试跟踪): 选择用例较多时,依赖关系图滚动条居中

--bug=1025898 --user=陈建星 【测试跟踪】功能用例关联的用例太多时,页面查看依赖关系是空白的 https://www.tapd.cn/55049933/s/1368661
This commit is contained in:
chenjianxing 2023-05-05 14:51:13 +08:00 committed by 刘瑞斌
parent 7cbeecea43
commit 0ed71bc9ec
3 changed files with 22 additions and 4 deletions

View File

@ -9,6 +9,7 @@
:group="group" :group="group"
@click="onClick" @click="onClick"
@datazoom="datazoom" @datazoom="datazoom"
@finished="$emit('finished')"
v-on="$listeners" v-on="$listeners"
:watch-shallow="watchShallow" :watch-shallow="watchShallow"
:manual-update="manualUpdate" :manual-update="manualUpdate"

View File

@ -1,5 +1,11 @@
<template> <template>
<ms-chart v-if="visible" :options="options" :height="height" :width="width" ref="msChart"/> <ms-chart
v-if="visible"
:options="options"
:height="height"
:width="width"
@finished="$emit('finished')"
ref="msChart"/>
</template> </template>
<script> <script>

View File

@ -6,9 +6,14 @@
<drawer-header :title="$t('commons.relationship.graph')" @close="close" @export="exportCharts"/> <drawer-header :title="$t('commons.relationship.graph')" @close="close" @export="exportCharts"/>
</template> </template>
<div> <div>
<el-scrollbar> <el-scrollbar class="graph-scrollbar">
<relationship-graph :height="height" :width="width" :data="graphData.data" :links="graphData.links" <relationship-graph
ref="relationshipGraph"/> :height="height"
:width="width"
:data="graphData.data"
:links="graphData.links"
@finished="handleFinished"
ref="relationshipGraph"/>
</el-scrollbar> </el-scrollbar>
</div> </div>
</ms-drawer> </ms-drawer>
@ -73,6 +78,12 @@ export default {
}); });
}); });
}, },
handleFinished() {
//
let graphScrollbar = document.querySelector('.graph-scrollbar .el-scrollbar__wrap');
let graphScrollbarView = document.querySelector('.graph-scrollbar .el-scrollbar__wrap .ms-chart');
graphScrollbar.scrollLeft = (graphScrollbarView.clientWidth - graphScrollbar.clientWidth)/2
},
close() { close() {
this.visible = false; this.visible = false;
} }