feat(store-order): 添加订单列表支付方式列

- 在 StoreOrderLists 类中添加支付方式列
- 新增 'pay_type_name' => '支付方式' 字段
This commit is contained in:
mkm 2024-11-23 15:08:24 +08:00
parent 6b3b1dedd0
commit 7c0ee175e4

View File

@ -178,6 +178,7 @@ class StoreOrderLists extends BaseAdminDataLists implements ListsSearchInterface
'status_name' => '状态',
'refund_price' => '退款金额',
'pay_time' => '支付时间',
'pay_type_name' => '支付方式',
];
return $data;
}