调整编码

This commit is contained in:
chenxf 2026-03-13 15:30:22 +08:00
parent e62ab544c7
commit 939ce1783f
2 changed files with 45 additions and 13 deletions

View File

@ -395,19 +395,36 @@ export default {
},
//
certTypeOptions: [
{ value: '1', label: '中华人民共和国居民身份证' },
{ value: '2', label: '护照' },
{ value: '3', label: '港澳居民来往内地通行证' },
{ value: '4', label: '台湾居民来往大陆通行证' },
{ value: '5', label: '外国人永久居留身份证' },
{ value: '9', label: '其他' }
{ value: '10', label: '中华人民共和国居民身份证' },
{ value: '20', label: '中华人民共和国军官证' },
{ value: '30', label: '中华人民共和国警官证' },
{ value: '40', label: '外国(地区)护照' },
{ value: '51', label: '香港特别行政区护照' },
{ value: '52', label: '香港(永久性)居民身份证' },
{ value: '53', label: '澳门特别行政区护照' },
{ value: '54', label: '澳门(永久性)居民身份证' },
{ value: '55', label: '港澳居民来往内地通行证' },
{ value: '56', label: '台湾居民身份证' },
{ value: '57', label: '台湾居民来往大陆通行证' },
{ value: '58', label: '台湾农民身份有关证明' },
{ value: '60', label: '户口簿' },
{ value: '61', label: '外国人永久居留身份证' },
{ value: '62', label: '华侨护照' },
{ value: '63', label: '港澳居民居住证' },
{ value: '64', label: '台湾居民居住证' },
{ value: '90', label: '其他有效身份证件' }
],
//
handleReasonOptions: [
{ value: '1', label: '经登记机关调查认定冒名登记基本事实清楚的' },
{ value: '2', label: '被冒用人和市场主体对冒名登记无异议的' },
{ value: '3', label: '人民法院已对冒名登记进行判决的' },
{ value: '9', label: '其他' }
{ value: '101', label: '经登记机关调查认定冒名登记基本事实清楚的;' },
{ value: '102', label: '公司和相关人员无法取得联系或不配合调查且公示期内无利害关系人提出异议,登记机关认为冒名登记成立的' },
{ value: '103', label: '人民法院生效判决或裁定已认定冒名登记事实的' },
{ value: '199', label: '其他应当撤销登记的情形。' },
{ value: '201', label: '有证据证明被冒用人对该次登记知情或事后曾予追认' },
{ value: '202', label: '利害关系人在公示期内对撤销登记提出异议,经登记机关调查基本属实的;' },
{ value: '203', label: '公安、税务、金融、人力资源社会保障等相关部门出具书面意见不同意撤销登记' },
{ value: '204', label: '撤销登记可能对公共利益造成重大损害的' },
{ value: '299', label: '其他不应撤销登记的情形' }
],
//
orgTreeList: []

View File

@ -428,7 +428,7 @@ export default {
showInTable: false
},
{
type: 'input',
type: 'select',
label: '处理原因',
prop: 'handlRea',
cnProp: 'handlReaCN',
@ -436,7 +436,10 @@ export default {
showInForm: ({ meta }) => {
return meta.isForm === true
},
showInTable: false
showInTable: false,
options: () => {
return this.handleReasonOptions
}
},
{
type: 'input',
@ -460,7 +463,19 @@ export default {
// }
],
//
orgTreeList: []
orgTreeList: [],
//
handleReasonOptions: [
{ value: '101', label: '经登记机关调查认定冒名登记基本事实清楚的;' },
{ value: '102', label: '公司和相关人员无法取得联系或不配合调查且公示期内无利害关系人提出异议,登记机关认为冒名登记成立的' },
{ value: '103', label: '人民法院生效判决或裁定已认定冒名登记事实的' },
{ value: '199', label: '其他应当撤销登记的情形。' },
{ value: '201', label: '有证据证明被冒用人对该次登记知情或事后曾予追认' },
{ value: '202', label: '利害关系人在公示期内对撤销登记提出异议,经登记机关调查基本属实的;' },
{ value: '203', label: '公安、税务、金融、人力资源社会保障等相关部门出具书面意见不同意撤销登记' },
{ value: '204', label: '撤销登记可能对公共利益造成重大损害的' },
{ value: '299', label: '其他不应撤销登记的情形' }
]
}
},
beforeRouteEnter(to, from, next) {