safety-eval-service-frontend/src/pages/Container/QualificationReview/mockData.js

18 lines
641 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// 资质备案审核相关 mock 数据FilingDetail 和 QualReviewForm 共享
export const MOCK_CERTIFICATES = [
{ id: 1, name: "危险化学品经营许可证", certNo: "AQSC001", category: "安全生产证书", issuer: "重庆市应急管理局", startDate: "2025-03-29", endDate: "2028-03-28" },
{ id: 2, name: "安全评价机构资质证书", certNo: "API-2026-001", category: "甲级资质", issuer: "重庆市应急管理局", startDate: "2026-01-15", endDate: "2029-01-14" },
];
export const CALIBRATION_MAP = {
done: { label: "已检定", color: "success" },
pending: { label: "待检定", color: "warning" },
};