|
@@ -130,7 +130,7 @@ export default {
|
|
|
prop: 'goodsAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -145,7 +145,7 @@ export default {
|
|
|
prop: 'totalAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
...(() => {
|
|
@@ -157,7 +157,7 @@ export default {
|
|
|
prop: 'workerAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -166,7 +166,7 @@ export default {
|
|
|
prop: 'workerProceAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -175,7 +175,7 @@ export default {
|
|
|
prop: 'websitAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -184,7 +184,7 @@ export default {
|
|
|
prop: 'websitProceAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
}
|
|
|
]
|
|
@@ -239,7 +239,7 @@ export default {
|
|
|
prop: 'totalAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -473,7 +473,7 @@ export default {
|
|
|
prop: 'goodsAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -488,7 +488,7 @@ export default {
|
|
|
prop: 'totalAmount'
|
|
|
},
|
|
|
render: (h, { row, column }) => {
|
|
|
- return <div>{this.toFixed(formData[column.columnAttributes.prop])}</div>
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
}
|
|
|
]}
|