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

1.修改样式;

parent 52ed26aa
......@@ -157,7 +157,7 @@
let newArr = []
for (let s of tmp) {
let diffTime = dayjs().diff(s.endTime, 'day');
s.diffTime = Math.abs(diffTime)
s.diffTime = Math.abs(diffTime) == 0 ? "" : Math.abs(diffTime)
s.amountMust = (s.amountMust / 100).toFixed(2)
newArr.push(s)
}
......@@ -166,7 +166,7 @@
return
}
if (this.pageCurrent > 1) {
this.PayProjectList.push(newArr)
this.PayProjectList.push(...newArr)
return
}
} else {
......@@ -255,6 +255,7 @@
line-height: 36rpx;
padding-left: 230rpx;
padding-top: 30rpx;
padding-right: 32rpx;
}
.money::before {
......
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