| | |
| | | return orderRevenue; |
| | | } |
| | | }, |
| | | {title: '购买打车卡收益', field: 'realGetMoney', visible: true, align: 'center', valign: 'middle', |
| | | { |
| | | title: '购买打车卡收益', field: 'realGetMoney', visible: true, align: 'center', valign: 'middle', |
| | | formatter: function (value, row) { |
| | | let taxiCardRevenue = typeof row.taxiCardRevenue == "undefined" ? "-" : row.taxiCardRevenue; |
| | | return taxiCardRevenue; |
| | | } |
| | | }, |
| | | {title: '超时扣款收益', field: 'userName', visible: true, align: 'center', valign: 'middle', |
| | | formatter: function (value, row) { |
| | | let overtimeDeduction = typeof row.overtimeDeduction == "undefined" ? "-" : row.overtimeDeduction; |
| | | return overtimeDeduction; |
| | | } |
| | | }, |
| | | {title: '司机投诉扣款平台收益', field: 'userPhone', visible: true, align: 'center', valign: 'middle', |
| | | // {title: '超时扣款收益', field: 'userName', visible: true, align: 'center', valign: 'middle', |
| | | // formatter: function (value, row) { |
| | | // let overtimeDeduction = typeof row.overtimeDeduction == "undefined" ? "-" : row.overtimeDeduction; |
| | | // return overtimeDeduction; |
| | | // } |
| | | // }, |
| | | { |
| | | title: '司机投诉扣款平台收益', field: 'userPhone', visible: true, align: 'center', valign: 'middle', |
| | | formatter: function (value, row) { |
| | | let complaintDeductionProceeds = typeof row.complaintDeductionProceeds == "undefined" ? "-" : row.complaintDeductionProceeds; |
| | | return complaintDeductionProceeds; |
| | | } |
| | | }, |
| | | {title: '其他收入', field: 'remark', visible: true, align: 'center', valign: 'middle', |
| | | { |
| | | title: '其他收入', field: 'remark', visible: true, align: 'center', valign: 'middle', |
| | | formatter: function (value, row) { |
| | | let other = typeof row.other == "undefined" ? "-" : row.other; |
| | | return other; |