修改bug

This commit is contained in:
Leo_Ding 2025-11-10 19:11:40 +08:00
parent e2ddb86645
commit b44825ffd7
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,8 @@
<span>{{ record.directionType === 'Transfer' ? '转出' : '去世' }}</span> <span>{{ record.directionType === 'Transfer' ? '转出' : '去世' }}</span>
</template> </template>
<template v-if="'passWayAt' === column.key"> <template v-if="'passWayAt' === column.key">
<span>{{dayjs(record.passWayAt).format('YYYY-MM-DD')}}</span> <span v-if="record.passWayAt">{{dayjs(record.passWayAt).format('YYYY-MM-DD')||'-'}}</span>
<span>-</span>
</template> </template>
</template> </template>
</a-table> </a-table>

View File

@ -135,7 +135,7 @@ const handleTabChange = async (key) => {
case '联络历史': case '联络历史':
case '操作记录': case '操作记录':
case '转入转出记录': case '转入转出记录':
formData.value = { customerId: recordId.value };
break break
} }
} }