新旧拆分单对比--列表

This commit is contained in:
范强强
2024-03-12 14:17:18 +08:00
parent 0773d4ab11
commit 8dfd4253ec
2 changed files with 7 additions and 7 deletions
@@ -65,9 +65,9 @@
<template v-slot:oldTextDetail="{text, record}"> <template v-slot:oldTextDetail="{text, record}">
<a-tooltip overlay-class-name="tooltip-style"> <a-tooltip overlay-class-name="tooltip-style">
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template> <template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
<div class="table-text can-click-table-text" v-if="text || text === 0" @click="toDetailPage('old', record)">{{ <!-- can-click-table-text @click="toDetailPage('old', record)"-->
text <div class="table-text" v-if="text || text === 0">
}} {{ text }}
</div> </div>
<div v-else class="table-text">{{ global.emptyLine }}</div> <div v-else class="table-text">{{ global.emptyLine }}</div>
</a-tooltip> </a-tooltip>
@@ -77,9 +77,9 @@
<template v-slot:newTextDetail="{text, record}"> <template v-slot:newTextDetail="{text, record}">
<a-tooltip overlay-class-name="tooltip-style"> <a-tooltip overlay-class-name="tooltip-style">
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template> <template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
<div class="table-text can-click-table-text" v-if="text || text === 0" @click="toDetailPage('new', record)">{{ <!-- can-click-table-text @click="toDetailPage('new', record)"-->
text <div class="table-text" v-if="text || text === 0">
}} {{ text }}
</div> </div>
<div v-else class="table-text">{{ global.emptyLine }}</div> <div v-else class="table-text">{{ global.emptyLine }}</div>
</a-tooltip> </a-tooltip>
@@ -848,6 +848,6 @@ export default {
/*z-index: 10;*/ /*z-index: 10;*/
} }
.iconClass{ .iconClass{
font-size: 18px; font-size: 19px;
} }
</style> </style>