dev
This commit is contained in:
parent
65a43258d2
commit
83abae6820
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue