|
@@ -162,12 +162,18 @@ export default {
|
|
|
{
|
|
|
title: '入库金额',
|
|
|
width: 120,
|
|
|
- dataIndex: 'inStorePrice'
|
|
|
+ dataIndex: 'inStorePrice',
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ return this.BaseTool.Amount.formatter(text)
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: '出库金额',
|
|
|
width: 120,
|
|
|
- dataIndex: 'outStorePrice'
|
|
|
+ dataIndex: 'outStorePrice',
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ return this.BaseTool.Amount.formatter(text)
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|