Commit 5e802a83 authored by yanglilong's avatar yanglilong

Merge branch 'yll-fix-1225' of git.ssish.com:sunhailiang/bims into test

parents 4c561028 8ec858cd
......@@ -273,9 +273,12 @@ export default {
},
computed: {
totalAmount(){
console.log(this.totalActualAmount,this.selectActualAmount,Number(this.totalActualAmount * 100) + this.selectActualAmount * 100)
return Big(this.totalActualAmount).plus(this.selectActualAmount)
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