优化订单汇总页面,新增字段的省略和提示功能,以提升用户体验

This commit is contained in:
danial
2025-07-01 16:56:25 +08:00
parent cdf0a7ea48
commit 663796297d

View File

@@ -158,19 +158,27 @@ const columns: TableColumnData[] = [
},
{
title: '拉单ck',
dataIndex: 'cookie.name'
dataIndex: 'cookie.name',
ellipsis: true,
tooltip: true
},
{
title: '系统订单号',
dataIndex: 'bankOrderId'
dataIndex: 'bankOrderId',
ellipsis: true,
tooltip: true
},
{
title: '京东订单号',
dataIndex: 'jdOrderNo'
dataIndex: 'jdOrderNo',
ellipsis: true,
tooltip: true
},
{
title: '支付链接',
dataIndex: 'wxPay'
dataIndex: 'wxPay',
ellipsis: true,
tooltip: true
},
// {
// title: '提取信息',
@@ -180,7 +188,9 @@ const columns: TableColumnData[] = [
// },
{
title: '订单金额',
dataIndex: 'orderAmount'
dataIndex: 'orderAmount',
ellipsis: true,
tooltip: true
},
{
title: '状态',
@@ -189,11 +199,15 @@ const columns: TableColumnData[] = [
},
{
title: '备注',
dataIndex: 'note'
dataIndex: 'note',
ellipsis: true,
tooltip: true
},
{
title: '创建时间',
dataIndex: 'createdAt'
dataIndex: 'createdAt',
ellipsis: true,
tooltip: true
}
// {
// title: '操作',