|
@@ -223,9 +223,12 @@ export default class SubOrderProfile extends Component {
|
|
|
key: 3,
|
|
|
width: '15%',
|
|
|
}, {
|
|
|
- title: '商品售价(元)',
|
|
|
- dataIndex: 'merchantPrice',
|
|
|
+ title: '商品价格',
|
|
|
key: 4,
|
|
|
+ render: (_, record) => {
|
|
|
+ const { chargeUnit, merchantPrice } = record;
|
|
|
+ return `¥${merchantPrice}/${chargeUnit}`;
|
|
|
+ },
|
|
|
width: '25%',
|
|
|
}, {
|
|
|
title: '商品数量',
|