|
@@ -90,10 +90,12 @@
|
|
|
<thead>
|
|
|
<tr style="height: 30px;padding: 5px;">
|
|
|
<th style="padding:5px 10px;width:8%;">序号</th>
|
|
|
- <th style="padding:5px 10px;width:35%;text-align: left;">人员姓名</th>
|
|
|
- <th style="padding:5px 10px;width:17%;">人员类型</th>
|
|
|
- <th style="padding:5px 10px;width:15%;">状态</th>
|
|
|
- <th style="padding:5px 10px;width:25%;">时间</th>
|
|
|
+ <th style="padding:5px 10px;width:15%;text-align: left;">人员姓名</th>
|
|
|
+ <th style="padding:5px 10px;width:15%;">人员类型</th>
|
|
|
+ <th style="padding:5px 10px;width:10%;">状态</th>
|
|
|
+ <th style="padding:5px 10px;width:17%;">审批意见</th>
|
|
|
+ <th style="padding:5px 10px;width:15%;">附件</th>
|
|
|
+ <th style="padding:5px 10px;width:20%;">时间</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -102,6 +104,8 @@
|
|
|
<td style="padding:5px 10px;text-align: left;">{{ item.userName||'' }}</td>
|
|
|
<td style="padding:5px 10px;">{{ item.userType||'' }}</td>
|
|
|
<td style="padding:5px 10px;">{{ item.state||'' }}</td>
|
|
|
+ <td style="padding:5px 10px;">{{ item.remark||'' }}</td>
|
|
|
+ <td style="padding:5px 10px;">{{ item.hasAttachments!= '0' ? '请在钉钉中查看附件内容' : '--' }}</td>
|
|
|
<td style="padding:5px 10px;">{{ item.date||'' }}</td>
|
|
|
</tr></tbody>
|
|
|
</table>
|
|
@@ -139,9 +143,7 @@ export default {
|
|
|
methods: {
|
|
|
pageInfo () {
|
|
|
this.getFyList()
|
|
|
- if (this.expenseInfo.state == 'AUDIT_PASS') {
|
|
|
- this.getSpList()
|
|
|
- }
|
|
|
+ this.getSpList()
|
|
|
},
|
|
|
getFyList () {
|
|
|
expenseAcctDetailFindList({ expenseAccountSn: this.detailSn }).then(res => {
|