|
@@ -99,11 +99,13 @@ export default class BasicProfile extends Component {
|
|
|
title: '单价',
|
|
title: '单价',
|
|
|
dataIndex: 'price',
|
|
dataIndex: 'price',
|
|
|
key: 'price',
|
|
key: 'price',
|
|
|
|
|
+ className: 'col-money',
|
|
|
render: renderContent,
|
|
render: renderContent,
|
|
|
}, {
|
|
}, {
|
|
|
title: '数量(件)',
|
|
title: '数量(件)',
|
|
|
dataIndex: 'num',
|
|
dataIndex: 'num',
|
|
|
key: 'num',
|
|
key: 'num',
|
|
|
|
|
+ className: 'col-money',
|
|
|
render: (text, row, index) => {
|
|
render: (text, row, index) => {
|
|
|
if (index < basicGoods.length) {
|
|
if (index < basicGoods.length) {
|
|
|
return text;
|
|
return text;
|
|
@@ -114,6 +116,7 @@ export default class BasicProfile extends Component {
|
|
|
title: '金额',
|
|
title: '金额',
|
|
|
dataIndex: 'amount',
|
|
dataIndex: 'amount',
|
|
|
key: 'amount',
|
|
key: 'amount',
|
|
|
|
|
+ className: 'col-money',
|
|
|
render: (text, row, index) => {
|
|
render: (text, row, index) => {
|
|
|
if (index < basicGoods.length) {
|
|
if (index < basicGoods.length) {
|
|
|
return text;
|
|
return text;
|
|
@@ -124,19 +127,19 @@ export default class BasicProfile extends Component {
|
|
|
return (
|
|
return (
|
|
|
<PageHeaderLayout title="基础详情页">
|
|
<PageHeaderLayout title="基础详情页">
|
|
|
<Card bordered={false}>
|
|
<Card bordered={false}>
|
|
|
- <DescriptionList title="退款申请" style={{ marginBottom: 24 }}>
|
|
|
|
|
|
|
+ <DescriptionList title="退款申请" style={{ marginBottom: 32 }}>
|
|
|
<Description term="取货单号">1000000000</Description>
|
|
<Description term="取货单号">1000000000</Description>
|
|
|
<Description term="状态">已取货</Description>
|
|
<Description term="状态">已取货</Description>
|
|
|
<Description term="销售单号">1234123421</Description>
|
|
<Description term="销售单号">1234123421</Description>
|
|
|
<Description term="子订单">3214321432</Description>
|
|
<Description term="子订单">3214321432</Description>
|
|
|
</DescriptionList>
|
|
</DescriptionList>
|
|
|
<div className={styles.divider} />
|
|
<div className={styles.divider} />
|
|
|
- <DescriptionList title="用户信息" style={{ marginBottom: 24 }}>
|
|
|
|
|
|
|
+ <DescriptionList title="用户信息" style={{ marginBottom: 32 }}>
|
|
|
<Description term="用户姓名">付小小</Description>
|
|
<Description term="用户姓名">付小小</Description>
|
|
|
<Description term="联系电话">18100000000</Description>
|
|
<Description term="联系电话">18100000000</Description>
|
|
|
<Description term="常用快递">菜鸟仓储</Description>
|
|
<Description term="常用快递">菜鸟仓储</Description>
|
|
|
<Description term="取货地址">浙江省杭州市西湖区万塘路18号</Description>
|
|
<Description term="取货地址">浙江省杭州市西湖区万塘路18号</Description>
|
|
|
- <Description term="备注">没啥</Description>
|
|
|
|
|
|
|
+ <Description term="备注">无</Description>
|
|
|
</DescriptionList>
|
|
</DescriptionList>
|
|
|
<div className={styles.divider} />
|
|
<div className={styles.divider} />
|
|
|
<div className={styles.title}>退货商品</div>
|
|
<div className={styles.title}>退货商品</div>
|
|
@@ -150,7 +153,7 @@ export default class BasicProfile extends Component {
|
|
|
/>
|
|
/>
|
|
|
<div className={styles.title}>退货进度</div>
|
|
<div className={styles.title}>退货进度</div>
|
|
|
<Table
|
|
<Table
|
|
|
- style={{ marginBottom: 24 }}
|
|
|
|
|
|
|
+ style={{ marginBottom: 16 }}
|
|
|
pagination={false}
|
|
pagination={false}
|
|
|
loading={basicLoading}
|
|
loading={basicLoading}
|
|
|
dataSource={basicProgress}
|
|
dataSource={basicProgress}
|