Commit fe393efb authored by 沈翠玲's avatar 沈翠玲

还款审批bug修复

parent e76b0003
......@@ -312,6 +312,7 @@
repayStatus: 'pending',
applyAmount: Decimal(form.totalRepayAmount).sub(Decimal(other)),
});
splitdata.value[i]['applyAmount'] = Decimal(form.totalRepayAmount).sub(Decimal(other))
} else {
list.push({
period: i + 1,
......@@ -319,9 +320,10 @@
repayStatus: 'pending',
applyAmount: crash,
});
splitdata.value[i]['applyAmount'] = crash
}
}
splitdata.value = list;
splitdata.value = splitdata.value;
};
const options = ref([
]);
......@@ -495,6 +497,10 @@
console.log('currentDetail', currentDetail.value, caselist);
form.totalRepayAmount = 0;
form.images = [];
form.totalPeriod = detail.totalPeriod
form.applyDate = detail.applyDate
form.firstApplyDate = detail.firstApplyDate
form.effectiveTime = detail.effectiveTime
mypictureRef.value?.clearFiles()
form.remainingAmount = 0;
form.images = detail.images
......
......@@ -552,6 +552,7 @@
// 去除分页控件,toolbar控件
return {
height: 'auto',
'min-height': 'auto',
toolbarConfig: { enabled: false },
columns: [
{ type: 'seq', width: 50, title: '序号' },
......@@ -680,7 +681,7 @@
.Content {
height: calc(100% - 50px);
.idea-box {
height: calc(100% - 24px);
height: calc(100% - 100px);
display: flex;
}
.left-idea {
......
......@@ -103,7 +103,7 @@
</div>
<div class="number-right">
<p>预计收回金额</p>
<p>¥{{ statisis.unAmount }}</p>
<p>¥{{ statisis1.unAmount }}</p>
</div>
</div>
</div>
......
......@@ -103,7 +103,7 @@
</div>
<div class="number-right">
<p>预计收回金额</p>
<p>¥{{ statisis.unAmount }}</p>
<p>¥{{ statisis1.unAmount }}</p>
</div>
</div>
</div>
......
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