Commit dde7da84 authored by lixy's avatar lixy

Merge branch 'dev-td' of http://113.105.137.151:22280/youjj/cloud-platform-ui into dev-td

parents 76427107 124b7c18
......@@ -473,8 +473,8 @@ export default {
if (row.type == 66) {
this.closedVehicleAmout = JSON.parse(row.params).closedVehicleAmout;
this.orderExtract = JSON.parse(row.params).orderExtract;
this.platformExtract = JSON.parse(row.params).platformExtract;
this.orderExtract = JSON.parse(row.params).orderExtract*100;
this.platformExtract = JSON.parse(row.params).platformExtract*100;
}
this.dialogFrom = row;
......@@ -631,8 +631,8 @@ export default {
maxNumberOfDay: this.dialogFrom.maxNumberOfDay,
withdrawWay: this.dialogFrom.withdrawWay,
closedVehicleAmout: this.closedVehicleAmout,
orderExtract: this.orderExtract,
platformExtract: this.platformExtract,
orderExtract: this.orderExtract/100,
platformExtract: this.platformExtract/100,
};
params.params = JSON.stringify(p);
} else {
......
......@@ -867,11 +867,13 @@ export default {
* 添加房车参数
* */
addModelParam() {
console.log(this.form.modelParam);
let c = {
key: "",
val: "",
};
if (this.form.modelParam.length < 1) {
this.form.modelParam = [];
}
this.form.modelParam.push(c);
},
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment