|
@@ -45,62 +45,74 @@ const InvoiceTrends = () => {
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_1',
|
|
dataIndex: 'month_1',
|
|
|
title: '1月',
|
|
title: '1月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_2',
|
|
dataIndex: 'month_2',
|
|
|
title: '2月',
|
|
title: '2月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_3',
|
|
dataIndex: 'month_3',
|
|
|
title: '3月',
|
|
title: '3月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_4',
|
|
dataIndex: 'month_4',
|
|
|
title: '4月',
|
|
title: '4月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_5',
|
|
dataIndex: 'month_5',
|
|
|
title: '5月',
|
|
title: '5月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_6',
|
|
dataIndex: 'month_6',
|
|
|
title: '6月',
|
|
title: '6月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_7',
|
|
dataIndex: 'month_7',
|
|
|
title: '7月',
|
|
title: '7月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_8',
|
|
dataIndex: 'month_8',
|
|
|
title: '8月',
|
|
title: '8月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_9',
|
|
dataIndex: 'month_9',
|
|
|
title: '9月',
|
|
title: '9月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_10',
|
|
dataIndex: 'month_10',
|
|
|
title: '10月',
|
|
title: '10月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_11',
|
|
dataIndex: 'month_11',
|
|
|
title: '11月',
|
|
title: '11月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
dataIndex: 'month_12',
|
|
dataIndex: 'month_12',
|
|
|
title: '12月',
|
|
title: '12月',
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: text => <div className="text-right">{text}</div>
|
|
|
}
|
|
}
|
|
|
]
|
|
]
|
|
|
|
|
|