修改新旧拆分单对比--字段名称

This commit is contained in:
范强强
2024-03-07 09:42:29 +08:00
parent 6eeee9bf33
commit 6e5e3fa21e
@@ -74,10 +74,11 @@
@operationClick="operationClick">
<!--跳转标准详情-->
<!-- @click="toDetailPage(record)"-->
<template v-slot:detail="{text, record}">
<a-tooltip overlay-class-name="tooltip-style">
<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(record)">{{ text }}</div>
<div class="table-text" v-if="text || text === 0">{{ text }}</div>
<div v-else class="table-text">{{ global.emptyLine }}</div>
</a-tooltip>
</template>