Commit 85a16594 authored by guang.wu's avatar guang.wu

feat: 添加备注字段

parent ec7357f1
...@@ -57,7 +57,7 @@ const DetailModal = (props, ref) => { ...@@ -57,7 +57,7 @@ const DetailModal = (props, ref) => {
{ {
title: '数量', title: '数量',
dataIndex: 'count', dataIndex: 'count',
width: 150, width: 100,
}, },
{ {
title: '小计', title: '小计',
...@@ -68,6 +68,11 @@ const DetailModal = (props, ref) => { ...@@ -68,6 +68,11 @@ const DetailModal = (props, ref) => {
return (supplyPrice * count).toFixed(2); return (supplyPrice * count).toFixed(2);
}, },
}, },
{
title: '商品备注',
dataIndex: 'remark',
width: 150,
},
{ {
title: '售后状态', title: '售后状态',
width: 150, width: 150,
......
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