|
|
@@ -49,7 +49,7 @@ const { columns, data, loading, getData, mobilePagination } = useNaivePaginatedT
|
|
|
key: 'orderItems',
|
|
|
title: '商品',
|
|
|
align: 'left',
|
|
|
- width: 200,
|
|
|
+ width: 280,
|
|
|
colSpan: (_rowData, _rowIndex) => 2,
|
|
|
render: row => {
|
|
|
const statusKey = row.returnMoneySts as keyof typeof refundStatus;
|
|
|
@@ -167,7 +167,7 @@ const { columns, data, loading, getData, mobilePagination } = useNaivePaginatedT
|
|
|
key: 'dvyType',
|
|
|
title: '订单类型',
|
|
|
align: 'center',
|
|
|
- width: 220,
|
|
|
+ width: 120,
|
|
|
render: row => {
|
|
|
return <NTag class={'mt7'}>{dvyStatus[row.dvyType as keyof typeof dvyStatus] || '未知类型'}</NTag>;
|
|
|
}
|
|
|
@@ -176,7 +176,7 @@ const { columns, data, loading, getData, mobilePagination } = useNaivePaginatedT
|
|
|
key: 'status',
|
|
|
title: '订单状态',
|
|
|
align: 'center',
|
|
|
- width: 220,
|
|
|
+ width: 250,
|
|
|
render: row => {
|
|
|
const statusKey = row.hbOrderStatus as keyof typeof orderStatus;
|
|
|
const statusText = orderStatus[statusKey] || '未知状态';
|