[update] 修改bug80255

This commit is contained in:
lideqin
2024-01-16 15:35:03 +08:00
parent 7c014955ee
commit 931ddbdb4f
4 changed files with 9 additions and 7 deletions
@@ -101,7 +101,8 @@
<template v-slot:toDetailNew="text, record">
<a-tooltip overlay-class-name="tooltip-style">
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
<a v-if="text" class="link-a" @click="handleGoDetailNew(record)">{{ text }}</a>
<a v-if="text && ['3', '5'].includes(record.projectStatus)" class="link-a" @click="handleGoDetailNew(record)">{{ text }}</a>
<div v-else-if="text" class="table-text">{{ text }}</div>
<div v-else class="table-text">{{ global.emptyLine }}</div>
</a-tooltip>
</template>