bug507
This commit is contained in:
parent
c59a3d48bd
commit
97e078e596
|
@ -23,7 +23,13 @@
|
||||||
<div class="title">审批详情</div>
|
<div class="title">审批详情</div>
|
||||||
<template v-for="item in dataSource.data" :key="item">
|
<template v-for="item in dataSource.data" :key="item">
|
||||||
<div class="oddNumbers">子单号:{{ item[0] }}</div>
|
<div class="oddNumbers">子单号:{{ item[0] }}</div>
|
||||||
<a-table :dataSource="item[1]" :columns="columns" />
|
<a-table :dataSource="item[1]" :columns="columns">
|
||||||
|
<template #bodyCell="{ column, text }">
|
||||||
|
<template v-if="column.dataIndex === 'name'">
|
||||||
|
<a>{{ text }}</a>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</a-table>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -183,14 +189,12 @@
|
||||||
} else {
|
} else {
|
||||||
shifoushizujian.value = false
|
shifoushizujian.value = false
|
||||||
console.log(res.data.data.resourceDTO)
|
console.log(res.data.data.resourceDTO)
|
||||||
debugger
|
|
||||||
res.data.data.resourceDTO.infoList.forEach((val) => {
|
res.data.data.resourceDTO.infoList.forEach((val) => {
|
||||||
console.log(val, '111111111111111111111111')
|
console.log(val, '111111111111111111111111')
|
||||||
if (val.attrValue === '智能算法') {
|
if (val.attrValue === '智能算法') {
|
||||||
nameNotShow.value = true
|
nameNotShow.value = true
|
||||||
algorithmShow.value = false
|
algorithmShow.value = false
|
||||||
console.log(nameNotShow.value, algorithmShow.value, 'wowowo')
|
console.log(nameNotShow.value, algorithmShow.value, 'wowowo')
|
||||||
debugger
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -268,6 +272,13 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
:deep(.ant-table-tbody) > tr > .ant-table-cell:nth-child(5) {
|
||||||
|
width: 110px;
|
||||||
|
display: inline-block;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
.oddNumbers {
|
.oddNumbers {
|
||||||
margin-bottom: 0.05rem;
|
margin-bottom: 0.05rem;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue