79dd3160 by simon

Merge branch 'master' of 120.27.44.69:dev/pingan-life-index-pro

2 parents 907d3d38 95d27384
......@@ -775,6 +775,15 @@ let policyIdTypeTcList = [
{ "v": "9", "n": "其他" },
];
let policyIdTypeEnList = [
{ "v": "33", "n": "HK ID No." },
{ "v": "36", "n": "Mainland ID No. (18 digits)" },
{ "v": "34", "n": "Macao ID No." },
{ "v": "40", "n": "Passport" },
{ "v": "51", "n": "HK birth certificate" },
{ "v": "52", "n": "Chinese birth certificate" },
{ "v": "9", "n": "Others" },
];
/**
*
* @param {string} lan 语言
......@@ -859,7 +868,7 @@ export function getPolicyIdTypeList(lan) {
case 'zh':
return policyIdTypeList;
case 'en':
return policyIdTypeTcList;
return policyIdTypeEnList;
default:
return policyIdTypeTcList;
}
......