|
@@ -49,86 +49,75 @@ export default {
|
|
|
return {
|
|
|
cols: [
|
|
|
{
|
|
|
- name: '应收金额(元)', //amount
|
|
|
+ name: '应收金额(元)', //totalAmout 0
|
|
|
label: ''
|
|
|
}, {
|
|
|
- name: '实收金额(元)',//amount
|
|
|
+ name: '实收金额(元)',//amount 1
|
|
|
label: ''
|
|
|
}, {
|
|
|
- name: '免费金额(元)',//freeMoney
|
|
|
+ name: '免费金额(元)',//freeMoney 2
|
|
|
label: ''
|
|
|
}, {
|
|
|
- name: '抵扣金额(元)',// deductionAmount
|
|
|
+ name: '抵扣金额(元)',// deductionAmount 3
|
|
|
label: ''
|
|
|
}, {
|
|
|
- name: '抵扣时长',//freeTime
|
|
|
+ name: '抵扣时长',//freeTime 4
|
|
|
label: ''
|
|
|
- }, {
|
|
|
- name: '实际抵扣额(元)',//deductionAmount + freeMoney
|
|
|
- label: ''
|
|
|
- }, {
|
|
|
- name: '支付方式',//payMethod
|
|
|
- label: ''
|
|
|
- }, {
|
|
|
- name: '支付渠道',//payType
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '支付方式',//payMethod 5
|
|
|
label: ''
|
|
|
},
|
|
|
- // {
|
|
|
- // name: '支付来源',
|
|
|
- // label: '沧海城建E支付'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: '订单类型',
|
|
|
- // label: '普通订单'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: '收费人员',
|
|
|
- // label: '-'
|
|
|
- // },
|
|
|
- // {
|
|
|
- // name: '终端位置',
|
|
|
- // label: '-'
|
|
|
- // },
|
|
|
{
|
|
|
- name: '创建时间',//createTime
|
|
|
+ name: '支付渠道',//payType 6
|
|
|
+ label: '其他'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '订单类型',
|
|
|
+ label: '普通订单' // 7
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '收费人员',
|
|
|
+ label: ''//chargePeople 8
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '创建时间',//createTime 9
|
|
|
label: ''
|
|
|
}, {
|
|
|
- name: '支付时间',//payTime
|
|
|
+ name: '支付时间',//payTime 10
|
|
|
label: ''
|
|
|
},
|
|
|
- // {
|
|
|
- // name: '支付同步时间',
|
|
|
- // label: ''
|
|
|
- // },
|
|
|
{
|
|
|
- name: '车场订单号',//orderNo
|
|
|
+ name: '车场订单号',//orderNo 11
|
|
|
label: ''
|
|
|
}
|
|
|
- // , {
|
|
|
- // name: '商户订单号',
|
|
|
- // label: '-'
|
|
|
- // }, {
|
|
|
- // name: '订单备注',
|
|
|
- // label: '- '
|
|
|
- // }
|
|
|
+ , {
|
|
|
+ name: '商户订单号',
|
|
|
+ label: ''//wxOrderNo 12
|
|
|
+ }
|
|
|
],
|
|
|
licenseNumber: '',
|
|
|
mobilizationTime: ''
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
|
+
|
|
|
console.log(this.params.row);
|
|
|
- this.cols[0].label = this.params.row.amount || '--';
|
|
|
+ this.cols[0].label = this.params.row.totalAmout || '--';
|
|
|
this.cols[1].label = this.params.row.amount || '--';
|
|
|
+
|
|
|
this.cols[2].label = this.params.row.freeMoney || '--';
|
|
|
this.cols[3].label = this.params.row.deductionAmount || '--';
|
|
|
this.cols[4].label = this.params.row.freeTime || '--';
|
|
|
- this.cols[5].label = (this.params.row.deductionAmount + this.params.row.freeMoney) || '--';
|
|
|
- this.cols[6].label = this.params.row.payMethod || '--';
|
|
|
- this.cols[7].label = this.params.row.payType || '--';
|
|
|
- this.cols[8].label = this.params.row.createTime || '--';
|
|
|
- this.cols[9].label = this.params.row.payTime || '--';
|
|
|
- this.cols[10].label = this.params.row.orderNo || '--';
|
|
|
+ this.cols[5].label = this.params.row.payMethod || '--';
|
|
|
+
|
|
|
+ this.cols[8].label = this.params.row.chargePeople || '--';
|
|
|
+ this.cols[9].label = this.params.row.createTime || '--';
|
|
|
+ this.cols[10].label = this.params.row.payTime || '--';
|
|
|
+ this.cols[11].label = this.params.row.orderNo || '--';
|
|
|
+ this.cols[12].label = this.params.row.wxOrderNo || '--';
|
|
|
+
|
|
|
+
|
|
|
this.licenseNumber = this.params.row.platNo || '--';
|
|
|
this.mobilizationTime = this.params.row.carInTime || '--';
|
|
|
}
|