fix : enpointTable 列表页面 限制提示框宽度

This commit is contained in:
likexuan
2022-10-28 16:27:29 +08:00
parent 66c4151595
commit 93848ed1ec
2 changed files with 4 additions and 3 deletions

View File

@@ -141,7 +141,7 @@ export default {
if (slow) { if (slow) {
item[type].timeout = setTimeout(() => { item[type].timeout = setTimeout(() => {
this.$set(item[type], 'loading', loading) this.$set(item[type], 'loading', loading)
}, 30) }, 200)
} else { } else {
if (item[type].timeout) { if (item[type].timeout) {
clearTimeout(item[type].timeout) clearTimeout(item[type].timeout)

View File

@@ -439,9 +439,10 @@ export default {
top: 4px; top: 4px;
} }
.copy-value-content__pre { .copy-value-content__pre {
width: 500px;
height: 200px; height: 200px;
margin-top: 20px; margin-top: 20px;
overflow-y: auto; overflow-y: scroll;
overflow-x: hidden; overflow-x: scroll;
} }
</style> </style>