Commit dbde8451 authored by 李智书's avatar 李智书

1

parent 41f52f4a
......@@ -14,7 +14,7 @@
{{item.chargeName}}
</view>
<view class="money">
{{item.amountMust?item.amountMust/100:'0.00'}}
{{item.amountMust}}
</view>
</view>
<view class="listitem center">
......@@ -156,7 +156,7 @@
for (let s of tmp) {
let diffTime = dayjs().diff(s.endTime, 'day');
s.diffTime = Math.abs(diffTime)
s.amountMust = s.amountMust.toFixed(2)
s.amountMust = (s.amountMust / 100).toFixed(2)
newArr.push(s)
}
this.PayProjectList = newArr
......
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