status-card.ts 606 B

12345678910111213141516171819
  1. // status-card.component.ts
  2. import { Component } from '@angular/core';
  3. import { CommonModule } from '@angular/common';
  4. @Component({
  5. selector: 'app-status-card',
  6. standalone: true,
  7. imports: [CommonModule],
  8. templateUrl: './status-card.html',
  9. styleUrls: ['./status-card.scss']
  10. })
  11. export class StatusCard {
  12. stats = [
  13. { title: '待处理简历', value: 24, change: '+5', trend: 'up' },
  14. { title: '已通过', value: 56, change: '+12', trend: 'up' },
  15. { title: '已拒绝', value: 32, change: '-3', trend: 'down' },
  16. { title: '面试安排', value: 18, change: '+8', trend: 'up' }
  17. ];
  18. }