style(credit): 隐藏客户详情中的更新时间和文件字段

- 注释掉更新时间显示组件
- 注释掉文件信息显示组件
- 保持其他客户信息字段正常显示
This commit is contained in:
2026-03-20 17:11:50 +08:00
parent 26e0a11bae
commit 287e91db79

View File

@@ -702,9 +702,9 @@ export default function CreditMpCustomerDetailPage() {
<Cell title="跟进状态" description={stepText} />
<Cell title="所在地区" description={buildLocation(row) || '—'} />
<Cell title="创建时间" description={fmtTime(row.createTime) || '—'} />
<Cell title="更新时间" description={fmtTime(row.updateTime) || '—'} />
{/*<Cell title="更新时间" description={fmtTime(row.updateTime) || '—'} />*/}
{!!row.url && <Cell title="链接" description={String(row.url)} />}
{!!row.files && <Cell title="文件" description={String(row.files)} />}
{/*{!!row.files && <Cell title="文件" description={String(row.files)} />}*/}
</CellGroup>
</View>
</View>