Browse Source

完善融资平仓付款管理

master
yunuo970428 2 weeks ago
parent
commit
8044a86341
  1. 5
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/financingClosingPayment/financingClosingPayment.vue

5
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/financingClosingPayment/financingClosingPayment.vue

@ -53,6 +53,11 @@
<el-button type="primary" size="mini" @click="toEdit(scope.row)">编辑</el-button>
</template>
</el-table-column>
<el-table-column label="支付状态" align="center" width="110">
<template slot-scope="scope">
<span>{{ scope.row.state == '1' ? '未支付' : scope.row.state == '2' ? '支付中' : scope.row.state == '3' ? '已支付' : '' }}</span>
</template>
</el-table-column>
<el-table-column prop="costTitleValue" label="款项名称" align="center" width="140" />
<el-table-column prop="openDate" label="融资付款开通日期" align="center" width="160" />
<el-table-column prop="period" label="期数" align="center" width="100" />

Loading…
Cancel
Save