123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- export const credentialType = [{
- id: 101,
- type: '身份证(含临时身份证)'
- },
- {
- id: 102,
- type: '护照(限外籍人士)'
- },
- {
- id: 103,
- type: '港澳居民来往内地通行证'
- },
- {
- id: 104,
- type: '台湾居民来往大陆通行证'
- },
- {
- id: 105,
- type: '军官证'
- },
- {
- id: 106,
- type: '武警警察身份证'
- },
- {
- id: 113,
- type: '澳门永久/非永久居民身份证'
- },
- {
- id: 114,
- type: '香港永久/非永久居民身份证'
- },
- {
- id: 201,
- type: '统一社会信用代码证书'
- },
- {
- id: 202,
- type: '组织机构代码证'
- },
- {
- id: 203,
- type: '营业执照'
- },
- {
- id: 204,
- type: '事业单位法人证书'
- },
- {
- id: 205,
- type: '社会团体法人登记证书'
- },
- {
- id: 206,
- type: '律师事务所执业许可证'
- },
- {
- id: 217,
- type: '公司商业登记副本(3个月内)'
- },
- {
- id: 218,
- type: '公司营业税单M8副本'
- },
- {
- id: 219,
- type: '公司营业税开业/更改M1副本'
- }
- ];
-
- //获取证件类型名称
- export const getCredentialType = (id: number) => {
- let types = credentialType.filter(item => item.id == id);
- return types[0].type
- }
|