|
@@ -342,24 +342,36 @@ export default {
|
|
|
columnAttributes: {
|
|
|
label: '费用名称',
|
|
|
prop: 'amountName'
|
|
|
+ },
|
|
|
+ render: (h, { row, column }) => {
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
columnAttributes: {
|
|
|
label: '费用金额',
|
|
|
prop: 'normAmount'
|
|
|
+ },
|
|
|
+ render: (h, { row, column }) => {
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
columnAttributes: {
|
|
|
label: '师傅分账金额',
|
|
|
prop: 'sffzje'
|
|
|
+ },
|
|
|
+ render: (h, { row, column }) => {
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
columnAttributes: {
|
|
|
label: '师傅手续费',
|
|
|
prop: 'sfsxf'
|
|
|
+ },
|
|
|
+ render: (h, { row, column }) => {
|
|
|
+ return <div>{this.toFixed(row[column.columnAttributes.prop])}</div>
|
|
|
}
|
|
|
}
|
|
|
]}
|