| | |
| | | steps.push({ |
| | | status: '0', |
| | | title: '需求申请', |
| | | person: sortedRecords.find(r => r.auditStatus === '0')?.createUser || '', |
| | | person: sortedRecords.find(r => r.auditStatus === '0')?.userName || '', |
| | | time: sortedRecords.find(r => r.auditStatus === '0')?.createTime || '' |
| | | }) |
| | | |
| | |
| | | steps.push({ |
| | | status: '1', |
| | | title: '审核通过', |
| | | person: approvedRecord.createUser || '', |
| | | person: approvedRecord.userName || '', |
| | | time: approvedRecord.createTime || '' |
| | | }) |
| | | } |
| | |
| | | steps.push({ |
| | | status: '2', |
| | | title: '拒绝申请', |
| | | person: rejectedRecord.createUser || '', |
| | | person: rejectedRecord.userName || '', |
| | | time: rejectedRecord.createTime || '' |
| | | }) |
| | | // 查找拒绝原因 |
| | |
| | | |
| | | <style scoped lang="scss"> |
| | | .audit-record-container { |
| | | height: 95%; |
| | | .label { |
| | | font-weight: 500; |
| | | margin-bottom: 8px; |