|
@@ -32,7 +32,7 @@
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
<div class="grid-content">
|
|
|
- <el-form-item label="干粮收购价格(元/公斤)">
|
|
|
+ <el-form-item label="干粮收购价格(元/公斤)" label-width="180px">
|
|
|
<el-input v-model="baseInfoForm.dryGrainPrice" :disabled="!isEdit"></el-input>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
@@ -965,8 +965,8 @@
|
|
|
prcieList.push(this.keepTwoDecimal(_price))
|
|
|
} else if (_waterMin >= _list[k].priceStart && _waterMin < _list[k].priceEnd) {
|
|
|
// 当前区间段价格+其他区间段价格
|
|
|
- // let _otherPice = this.getOtherPrice(_list, _list[k], "leftBasic")
|
|
|
- // let _price1 = (_list[k].priceEnd - _waterMin) / 0.5 * _list[k].betweenPrice + _otherPice;
|
|
|
+ let _otherPice = this.getOtherPrice(_list, _list[k], "leftBasic")
|
|
|
+ let _price1 = (_list[k].priceEnd - _waterMin) / 0.5 * _list[k].betweenPrice + _otherPice;
|
|
|
prcieList.push(basePrice + _price1)
|
|
|
|
|
|
}
|
|
@@ -984,8 +984,8 @@
|
|
|
prcieList.push(this.keepTwoDecimal(_price))
|
|
|
} else if (_waterMin > _list[k].priceStart && _waterMin <= _list[k].priceEnd) {
|
|
|
// 当前段价格+其他段价格
|
|
|
- // let _otherPice2 = this.getOtherPrice(_list, _list[k], "rightBasic")
|
|
|
- // let _price2 = (_waterMin - _list[k].priceEnd) / 0.5 * _list[k].betweenPrice + _otherPice2;
|
|
|
+ let _otherPice2 = this.getOtherPrice(_list, _list[k], "rightBasic")
|
|
|
+ let _price2 = (_waterMin - _list[k].priceEnd) / 0.5 * _list[k].betweenPrice + _otherPice2;
|
|
|
prcieList.push(basePrice - _price2)
|
|
|
}
|
|
|
}
|