Commit c04b77ac authored by Mac's avatar Mac

1

parent 91360a3c
...@@ -672,13 +672,13 @@ export default { ...@@ -672,13 +672,13 @@ export default {
} }
if (this.saveObj.B2CRatio) { if (this.saveObj.B2CRatio) {
this.OrderMsg.B2CRatio = this.OrderMsg.B2CRatio =
this.saveObj.B2CRatio > 1 this.saveObj.B2CRatio > 0
? this.saveObj.B2CRatio / 100 ? this.saveObj.B2CRatio / 100
: this.saveObj.B2CRatio; : this.saveObj.B2CRatio;
} }
if (this.saveObj.B2CReNewRatio) { if (this.saveObj.B2CReNewRatio) {
this.OrderMsg.B2CReNewRatio = this.OrderMsg.B2CReNewRatio =
this.saveObj.B2CReNewRatio > 1 this.saveObj.B2CReNewRatio > 0
? this.saveObj.B2CReNewRatio / 100 ? this.saveObj.B2CReNewRatio / 100
: this.saveObj.B2CReNewRatio; : this.saveObj.B2CReNewRatio;
} }
......
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