数据统计模块开发对接
This commit is contained in:
57
src/dicts/dataStatistics.ts
Normal file
57
src/dicts/dataStatistics.ts
Normal file
@ -0,0 +1,57 @@
|
||||
// 数据统计模块字典
|
||||
|
||||
// 评价等级字典
|
||||
export const EvaluateLevelText = {
|
||||
'A': 'A级',
|
||||
'B': 'B级',
|
||||
'C': 'C级',
|
||||
'D': 'D级',
|
||||
};
|
||||
|
||||
// 评价等级对应颜色
|
||||
export const EvaluateLevelColor = {
|
||||
'A': 'green',
|
||||
'B': 'blue',
|
||||
'C': 'orange',
|
||||
'D': 'red',
|
||||
};
|
||||
|
||||
// 供应商类型
|
||||
export const SupplierTypeText = {
|
||||
'DOMESTIC': '境内',
|
||||
'FOREIGN': '境外',
|
||||
};
|
||||
|
||||
// 评价年度列表
|
||||
export const EvaluateYears = [
|
||||
{ label: '2023年', value: '2023' },
|
||||
{ label: '2022年', value: '2022' },
|
||||
{ label: '2021年', value: '2021' },
|
||||
];
|
||||
|
||||
// 年审结果字典
|
||||
export const AnnualReviewResultText = {
|
||||
'1': '合格',
|
||||
'2': '不合格',
|
||||
};
|
||||
|
||||
// 年审结果对应颜色
|
||||
export const AnnualReviewResultColor = {
|
||||
'1': 'green',
|
||||
'2': 'red',
|
||||
};
|
||||
|
||||
// 年审年度列表
|
||||
export const AnnualReviewYears = [
|
||||
{ label: '2023年', value: '2023' },
|
||||
{ label: '2022年', value: '2022' },
|
||||
{ label: '2021年', value: '2021' },
|
||||
];
|
||||
|
||||
// 数据统计类型
|
||||
export const StatisticsType = {
|
||||
'EVALUATE': 'evaluate', // 评价情况统计
|
||||
'ANNUAL': 'annual', // 年度考核统计
|
||||
'EXIT': 'exit', // 退出情况统计
|
||||
'QUALIFICATION': 'qualification', // 资质预警统计
|
||||
};
|
Reference in New Issue
Block a user