Commit 7d75c8d3 authored by wzy's avatar wzy

feat: 商品类型字段

parent cd2ddf55
......@@ -147,6 +147,14 @@ const Products: React.FC<{}> = () => {
render: t => t ? t : intl.formatMessage({ id: 'commodity.products.columns.upperMemberName.1' })
},
{
title: '商品类型',
dataIndex: 'CommodityType',
key: 'CommodityType',
render: t => {
return t === 1 ? '自营商品' : '上游供应商品'
}
},
{
title: intl.formatMessage({ id: 'commodity.products.columns.min' }),
dataIndex: 'min',
key: 'min',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment