update dialog

This commit is contained in:
Fine 2025-03-10 15:45:05 +08:00
parent f74074d737
commit b5035bbfd7
2 changed files with 8 additions and 3 deletions

View File

@ -15,7 +15,7 @@ limitations under the License. -->
<Icon iconName="spinner" size="sm" /> <Icon iconName="spinner" size="sm" />
</div> </div>
<div ref="traceGraph" class="d3-graph"></div> <div ref="traceGraph" class="d3-graph"></div>
<el-dialog v-model="showDetail" :destroy-on-close="true" fullscreen @closed="showDetail = false"> <el-dialog v-model="showDetail" :destroy-on-close="true" @closed="showDetail = false">
<SpanDetail :currentSpan="currentSpan" /> <SpanDetail :currentSpan="currentSpan" />
</el-dialog> </el-dialog>
</template> </template>

View File

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