修改热区

This commit is contained in:
sunhonglai
2025-05-09 11:08:00 +08:00
parent de680cb3c4
commit 67a61180b0
2 changed files with 9 additions and 9 deletions

View File

@@ -84,7 +84,7 @@
</template> -->
<div
style="max-width: 180px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;user-select:text"
:title="record.orgName">{{ record.neworganizationName }}</div>
>{{ record.orgName }}</div>
<!-- </a-popover> -->
</a-space>
</template>
@@ -982,13 +982,13 @@ export default {
.then((res) => {
// tableData.value = res.data.data.records
let objA = res.data.data.records
objA.map((item) => {
if (item.orgName !== null) {
item.neworganizationName = item.orgName.split('/')
item.neworganizationName = item.neworganizationName[item.neworganizationName.length - 1]
}
// console.log(item.orgName)
})
// objA.map((item) => {
// if (item.orgName !== null) {
// item.neworganizationName = item.orgName.split('/')
// item.neworganizationName = item.neworganizationName[item.neworganizationName.length - 1]
// }
// // console.log(item.orgName)
// })
tableData.value = objA
state.tableDataTotal = Number(res.data.data.total);
state.tableLoading = false

View File

@@ -146,7 +146,7 @@
<template #trainOrg="{ record }">
<a-space style="display:flex ;justify-content: space-around;">
<div style="max-width: 180px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;"
:title="record.orgName">{{ orgSplit(record.orgName) }}</div>
>{{ record.orgName }}</div>
</a-space>
</template>
</a-table>