jinhui.wang

重量计算修正

...@@ -713,7 +713,7 @@ export default { ...@@ -713,7 +713,7 @@ export default {
713 this.$set( 713 this.$set(
714 this.form, 714 this.form,
715 "lowAvailableWeight", 715 "lowAvailableWeight",
716 - Weight - this.form.accountTotalWeight - this.form.highAvailableWeight 716 + (Weight - this.form.accountTotalWeight - (this.form.alloctedWeight - this.form.accountAllocatedWeight)) - this.form.highAvailableWeight
717 ); 717 );
718 //this.form.lowAvailableWeight = Weightall - this.form.HighAvailableWeight; 718 //this.form.lowAvailableWeight = Weightall - this.form.HighAvailableWeight;
719 } else if ( 719 } else if (
......