fix: 跟踪任务编号的传入获取信息

This commit is contained in:
TsMask
2025-07-02 15:27:45 +08:00
parent 2181d51999
commit e3f70640b8
4 changed files with 12 additions and 8 deletions

View File

@@ -31,6 +31,8 @@ const wk = new wkUtil.WK();
/**跟踪编号 */
const traceId = ref<string>(route.query.traceId as string);
/**任务编号 */
const id = ref<string>(route.query.id as string);
/**关闭跳转 */
function fnClose() {
@@ -588,7 +590,7 @@ onBeforeUnmount(() => {
<strong>{{ traceId }}</strong>
</span>
<!-- 任务信息 -->
<TaskInfoIcon :trace-id="traceId" />
<TaskInfoIcon :id="id" />
</a-space>
</template>