| | |
| | | <el-input |
| | | v-model="item.real_value" |
| | | size="mini" |
| | | oninput="value=value.replace(/[^0-9]/g,'')" |
| | | oninput="value=value.replace(/[^0-9.]/g,'')" |
| | | style="width: 100px;margin-left: 5px" |
| | | @input="val=>inputChange(val,item)" |
| | | /> |
| | |
| | | this.form.sampscare = res.chekstand[0].sampmethod === 'FIXED' ? res.chekstand[0].sampscare |
| | | : res.labcont[0].good_qty * res.chekstand[0].sampscare / 100 |
| | | this.form.sampscare = this.form.sampscare <= this.form.good_qty ? this.form.sampscare : this.form.good_qty |
| | | |
| | | this.form.sampscare = Math.ceil(this.form.sampscare)// 向上取整 |
| | | await this.getMesOrderStepCheckItemList() |
| | | }, |
| | | async getMesOrderStepCheckItemList() { |