GFRS-2618【前端】新增津贴申请的基本信息页面的部分代码。提交人--张齐

This commit is contained in:
zhangqi1
2021-09-08 18:36:58 +08:00
parent d4e4427d2a
commit 08d57e922c
3 changed files with 887 additions and 1 deletions

View File

@@ -3614,6 +3614,24 @@ export default {
queryOccupationalByType: [
{ id: '1', text: '卡单' },
{ id: '2', text: '重新投保' }
]
],
// 津贴申请-证件类型的枚举(父母津贴申请功能专用,因为父母津贴功能中证件类型没有出生证,所以在此创建一个新的枚举,供父母津贴功能专用)
allowanceIdType: [
{ id: 1, text: '居民身份证' },
{ id: 2, text: '户口本' },
// { id: 3, text: '出生证' },
{ id: 4, text: '护照' },
{ id: 5, text: '港澳居民来往内地通行证' },
{ id: 6, text: '台湾居民来往大陆通行证' },
// { id: 7, text: '其他', disabled: true },
{ id: 8, text: '外国人永久居留身份证' },
{ id: 9, text: '港澳台居民居住证' }
],
// 津贴申请-享受人角色的枚举(父母津贴申请功能专用)
allowanceEnjoyUserRole: [
{ id: '0', text: '父亲' },
{ id: '1', text: '母亲' }
]
}