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