This commit is contained in:
ChenQiuYu 2025-05-21 14:33:51 +08:00
parent 65a43258d2
commit 83abae6820
1 changed files with 4 additions and 3 deletions

View File

@ -70,11 +70,9 @@ import {Monitor} from '@element-plus/icons-vue'
const show = ref(false) const show = ref(false)
const list = ref() const list = ref<any>()
const orderInfo = ref()
const init = (data: any) => { const init = (data: any) => {
list.value = data list.value = data
console.log(list)
show.value = true show.value = true
} }
const close = () => { const close = () => {
@ -262,6 +260,9 @@ const addTraceAbilityCodeHandler = (item: any, code: any) => {
&:first-child { &:first-child {
width: 132px; width: 132px;
padding-left: 25px; padding-left: 25px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
&:last-child { &:last-child {