f
This commit is contained in:
@@ -204,13 +204,13 @@ export function splitDWBG6A2CForTabs(reportData) {
|
||||
});
|
||||
}
|
||||
|
||||
// 14. 法院风险信息
|
||||
if (originalData.judiciaRiskInfos && originalData.judiciaRiskInfos.length > 0) {
|
||||
// 14. 个人司法信息
|
||||
if (originalData.judicialLeaseReport) {
|
||||
splitModules.push({
|
||||
data: {
|
||||
apiID: 'DWBG6A2C_CourtRiskInfo',
|
||||
data: {
|
||||
judiciaRiskInfos: originalData.judiciaRiskInfos
|
||||
judicialLeaseReport: originalData.judicialLeaseReport
|
||||
},
|
||||
success: true,
|
||||
timestamp: baseTimestamp
|
||||
@@ -269,7 +269,8 @@ export function formatPhoneStatus(status) {
|
||||
export function formatVerificationResult(result) {
|
||||
const resultMap = {
|
||||
'0': { color: 'text-green-600', bg: 'bg-green-100', text: '一致', icon: '✅' },
|
||||
'1': { color: 'text-red-600', bg: 'bg-red-100', text: '不一致或不存在', icon: '❌' }
|
||||
'1': { color: 'text-red-600', bg: 'bg-red-100', text: '不一致或不存在', icon: '❌' },
|
||||
'-1': { color: 'text-gray-600', bg: 'bg-gray-100', text: '查无记录', icon: '❓' }
|
||||
};
|
||||
|
||||
return resultMap[result] || { color: 'text-gray-600', bg: 'bg-gray-100', text: '未知', icon: '❓' };
|
||||
|
||||
Reference in New Issue
Block a user