feat(admin): 为 StoreOrderCartInfoTwoLists 添加顶级分类名称字段

- 在 StoreOrderCartInfoTwoLists 类中添加 top_cate_name 字段
- 初始化 item 数组时设置 top_cate_name 为空字符串
This commit is contained in:
mkm 2024-11-07 16:43:02 +08:00
parent 7af7906e01
commit c2df6b1c7e

View File

@ -113,6 +113,7 @@ class StoreOrderCartInfoTwoLists extends BaseAdminDataLists implements ListsSear
$item['unit_name'] = ''; //
$item['cate_name'] = ''; //
$item['system_store'] = ''; //
$item['top_cate_name'] = ''; //
}
return $item; //返回处理后的数据。
})