Commit 78ed6e85 authored by yanglilong's avatar yanglilong

Merge branch 'yll-fix-1225' into 'master'

理赔金额合计错误

See merge request !83
parents ddc6fd5a 8ec858cd
......@@ -273,9 +273,12 @@ export default {
},
computed: {
totalAmount(){
console.log(this.totalActualAmount,this.selectActualAmount,Number(this.totalActualAmount * 100) + this.selectActualAmount * 100)
if (this.isEditNewBill) {
return Big(this.totalActualAmount).plus(this.selectActualAmount)
} else {
return this.totalActualAmount
}
},
columns() {
const base = [
......
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