feat: enhance trace list graph (#459)

This commit is contained in:
Fine0830
2025-03-28 10:34:01 +08:00
committed by GitHub
parent 0ea8335fee
commit 39b4626317
8 changed files with 213 additions and 73 deletions

View File

@@ -87,7 +87,14 @@ limitations under the License. -->
{{ t("relatedTraceLogs") }}
</el-button>
</div>
<el-dialog v-model="showEventDetail" :destroy-on-close="true" fullscreen @closed="showEventDetail = false">
<el-dialog
v-model="showEventDetail"
width="60%"
center
align-center
:destroy-on-close="true"
@closed="showEventDetail = false"
>
<div>
<div class="mb-10">
<span class="grey title">Name:</span>
@@ -115,7 +122,14 @@ limitations under the License. -->
</div>
</div>
</el-dialog>
<el-dialog v-model="showRelatedLogs" :destroy-on-close="true" fullscreen @closed="showRelatedLogs = false">
<el-dialog
v-model="showRelatedLogs"
width="60%"
center
align-center
:destroy-on-close="true"
@closed="showRelatedLogs = false"
>
<el-pagination
v-model="pageNum"
:page-size="pageSize"
@@ -295,4 +309,10 @@ limitations under the License. -->
.link {
text-decoration: underline;
}
.log-tips {
width: 100%;
text-align: center;
margin: 50px 0;
}
</style>