Commit e38b85ef authored by dragondean@qq.com's avatar dragondean@qq.com

快速输入的货值的时候保价费计算可能异常

parent 7bb311f1
......@@ -243,7 +243,8 @@
]"
class="mb-0 mr-0"
>
<el-input v-model.number="scope.row.worth" :disabled="!canAddProduct" @input="calculationPrice" type="number" />
<!--input事件在快速输入的时候,可能最后拿到的结果不是最后输入的参数,所以改成在blur的时候计算-->
<el-input v-model.number="scope.row.worth" :disabled="!canAddProduct" @blur="calculationPrice" type="number" />
</el-form-item>
</template>
</el-table-column>
......
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