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

还款审批

parent 69669c30
......@@ -361,8 +361,14 @@ td {
line-height: 1.15;
display: inline-block;
width: 20%;
height: 50px;
height: 100%;
margin-right: 10px;
position: relative;
img {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
}
.title_warp {
line-height: 1.15;
......
......@@ -23,6 +23,7 @@
<el-button
type="primary"
@click="changeStatus"
v-if="activeName==='pending'"
:disabled="!selectdList || !selectdList.length"
>审批
</el-button>
......@@ -40,7 +41,15 @@
esc-closable
>
<div class="w-full px-3 h-full overflow-auto flex-col flex mytable">
是否审批通过{{currentRow ? `借款人${currentRow?.borrower?.name}, 还款金额${currentRow?.realRepayAmount}`: '选中'}}的数据?
<template v-if="currentRow">
是否审批通过{{currentRow ? `借款人${currentRow?.borrower?.name}, 还款金额${currentRow?.realRepayAmount},实际还款时间${currentRow?.realRepayTime}`: ''}}的数据?
</template>
<template v-else>
是否审批通过以下数据:<br>
<div v-for="(item,index) in selectdList" :key="index">
{{`借款人${item?.borrower?.name}, 还款金额${item?.realRepayAmount},实际还款时间${item?.realRepayTime}`}}
</div>
</template>
</div>
<template #footer>
<el-button type="default" @click="showModal = false">取消</el-button>
......
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