fix(测试计划): 修复关联的缺陷预览显示不全的问题

This commit is contained in:
shiziyuan9527 2021-01-26 14:48:52 +08:00
parent cbcb464f55
commit edf337d996
1 changed files with 10 additions and 2 deletions

View File

@ -257,9 +257,10 @@
<el-table-column prop="description" :label="$t('test_track.issue.description')">
<template v-slot:default="scope">
<el-popover
placement="left"
width="400"
placement="right"
width="500"
trigger="hover"
popper-class="issues-popover"
>
<ckeditor :editor="editor" disabled :config="readConfig"
v-model="scope.row.description"/>
@ -748,3 +749,10 @@ p {
z-index: 999;
}
</style>
<style>
.issues-popover {
height: 550px;
overflow: auto;
}
</style>