|
@@ -2,7 +2,7 @@
|
2
|
2
|
* @Author: ysh
|
3
|
3
|
* @Date: 2024-05-10 14:45:08
|
4
|
4
|
* @LastEditors: Please set LastEditors
|
5
|
|
- * @LastEditTime: 2024-07-04 11:00:25
|
|
5
|
+ * @LastEditTime: 2024-07-15 16:35:32
|
6
|
6
|
-->
|
7
|
7
|
<template>
|
8
|
8
|
<div class="mt20">
|
|
@@ -28,7 +28,7 @@
|
28
|
28
|
<el-table-column prop="borrowUsage" label="申请类型" width="100">
|
29
|
29
|
<template slot-scope="scope">
|
30
|
30
|
<el-tag :type="scope.row.borrowUsage === '0' ? 'primary' : 'info'">{{ scope.row.borrowUsage === '0' ?
|
31
|
|
- '项目借款' : '非项目借款' }}</el-tag>
|
|
31
|
+ '项目借款' : '非项目借款' }}</el-tag>
|
32
|
32
|
</template>
|
33
|
33
|
</el-table-column>
|
34
|
34
|
<el-table-column prop="applyAmount" label="申请金额" />
|
|
@@ -72,6 +72,10 @@
|
72
|
72
|
<!-- <el-table-column prop="xmAmount" label="项目部校核金额" /> -->
|
73
|
73
|
<el-table-column prop="managerAmount" label="分管校核金额" />
|
74
|
74
|
</el-table>
|
|
75
|
+ <div class="mt20" style="display:flex;">
|
|
76
|
+ <div style="width:120px"><b>借款人说明:</b></div>
|
|
77
|
+ <div>{{ clickRow.remark }}</div>
|
|
78
|
+ </div>
|
75
|
79
|
<el-form inline class="mt20">
|
76
|
80
|
<el-form-item label="申请金额:">
|
77
|
81
|
{{ clickRow.applyAmount }}
|
|
@@ -126,7 +130,7 @@ export default {
|
126
|
130
|
})
|
127
|
131
|
},
|
128
|
132
|
getBorrowDetailData(borrowId) {
|
129
|
|
- listBorrowDetail({borrowId:borrowId}).then(res => {
|
|
133
|
+ listBorrowDetail({ borrowId: borrowId }).then(res => {
|
130
|
134
|
if (res.rows.length != 0) {
|
131
|
135
|
this.detailList = res.rows
|
132
|
136
|
}
|