|
|
@@ -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: 2025-02-25 16:51:16
|
|
|
5
|
+ * @LastEditTime: 2026-03-26 16:34:59
|
|
6
|
6
|
-->
|
|
7
|
7
|
<template>
|
|
8
|
8
|
<div class="mt20">
|
|
|
@@ -18,44 +18,44 @@
|
|
18
|
18
|
|
|
19
|
19
|
<el-table :data="borrowList" style="width: 100%">
|
|
20
|
20
|
<el-table-column type="index" label="序号" width="50" />
|
|
21
|
|
- <el-table-column label="申请状态" width="100">
|
|
|
21
|
+ <el-table-column label="申请状态" width="110">
|
|
22
|
22
|
<template slot-scope="scope">
|
|
23
|
23
|
<el-tag :type="scope.row.lendTime == null ? 'warning' : 'success'">
|
|
24
|
24
|
{{ scope.row.lendTime == null ? '审批中' : '已完成' }}
|
|
25
|
25
|
</el-tag>
|
|
26
|
26
|
</template>
|
|
27
|
27
|
</el-table-column>
|
|
28
|
|
- <el-table-column prop="borrowUsage" label="申请类型" width="100">
|
|
|
28
|
+ <el-table-column prop="borrowUsage" label="申请类型" width="110">
|
|
29
|
29
|
<template slot-scope="scope">
|
|
30
|
30
|
<el-tag :type="scope.row.borrowUsage === '0' ? 'primary' : 'info'">{{ scope.row.borrowUsage === '0' ?
|
|
31
|
31
|
'项目借款' : '非项目借款' }}</el-tag>
|
|
32
|
32
|
</template>
|
|
33
|
33
|
</el-table-column>
|
|
34
|
|
- <el-table-column prop="applyAmount" label="申请金额" />
|
|
35
|
|
- <el-table-column prop="managerAmount" label="核准金额" />
|
|
36
|
|
- <el-table-column prop="applierUser.nickName" label="申请人" />
|
|
|
34
|
+ <el-table-column prop="applyAmount" label="申请金额" width="110" />
|
|
|
35
|
+ <el-table-column prop="managerAmount" label="核准金额" width="110"/>
|
|
|
36
|
+ <el-table-column prop="applierUser.nickName" label="申请人" width="110"/>
|
|
37
|
37
|
<el-table-column prop="dept.deptName" label="申请部门" width="110" />
|
|
38
|
38
|
<el-table-column prop="applyDate" label="申请时间" width="110" />
|
|
39
|
|
- <el-table-column prop="deptComment" label="部门审核意见" show-overflow-tooltip width="100">
|
|
|
39
|
+ <el-table-column prop="deptComment" label="部门审核" show-overflow-tooltip width="110">
|
|
40
|
40
|
<template slot-scope="scope">
|
|
41
|
41
|
{{ scope.row.deptComment == null ? '待审' : scope.row.deptComment }}
|
|
42
|
42
|
</template>
|
|
43
|
43
|
</el-table-column>
|
|
44
|
|
- <el-table-column prop="managerComment" label="分管审核意见" show-overflow-tooltip width="100">
|
|
|
44
|
+ <el-table-column prop="managerComment" label="分管审核" show-overflow-tooltip width="110">
|
|
45
|
45
|
<template slot-scope="scope">
|
|
46
|
46
|
{{ scope.row.managerComment == null ? '待审' : scope.row.managerComment }}
|
|
47
|
47
|
</template>
|
|
48
|
48
|
</el-table-column>
|
|
49
|
|
- <el-table-column prop="zjlComment" label="总经理审核意见" show-overflow-tooltip width="120">
|
|
|
49
|
+ <el-table-column prop="zjlComment" label="总经理审核" show-overflow-tooltip width="110">
|
|
50
|
50
|
<template slot-scope="scope">
|
|
51
|
51
|
{{ scope.row.zjlComment == null ? '待审' : scope.row.zjlComment }}
|
|
52
|
52
|
</template>
|
|
53
|
53
|
</el-table-column>
|
|
54
|
|
- <el-table-column prop="cwUser.nickName" label="财务经办人" show-overflow-tooltip width="100">
|
|
|
54
|
+ <el-table-column prop="cwUser.nickName" label="财务经办人" show-overflow-tooltip width="110">
|
|
55
|
55
|
</el-table-column>
|
|
56
|
56
|
<el-table-column prop="lendTime" label="支付时间">
|
|
57
|
57
|
</el-table-column>
|
|
58
|
|
- <el-table-column label="操作" fixed="right" header-align="center">
|
|
|
58
|
+ <el-table-column label="操作" fixed="right" header-align="center" width="110">
|
|
59
|
59
|
<template slot-scope="scope">
|
|
60
|
60
|
<el-button icon="el-icon-view" type="text" size="mini" @click="handleLook(scope.row)">查看明细</el-button>
|
|
61
|
61
|
</template>
|