From 08d57e922cdc4c557658ef4def0fbd1f308be959 Mon Sep 17 00:00:00 2001 From: zhangqi1 Date: Wed, 8 Sep 2021 18:36:58 +0800 Subject: [PATCH] =?UTF-8?q?GFRS-2618=E3=80=90=E5=89=8D=E7=AB=AF=E3=80=91?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=B4=A5=E8=B4=B4=E7=94=B3=E8=AF=B7=E7=9A=84?= =?UTF-8?q?=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF=E9=A1=B5=E9=9D=A2=E7=9A=84?= =?UTF-8?q?=E9=83=A8=E5=88=86=E4=BB=A3=E7=A0=81=E3=80=82=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E4=BA=BA--=E5=BC=A0=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/js/utils/data-dictionary.js | 20 +- .../ebiz/allowance/application/IndexBar.vue | 226 ++++++ .../ebiz/allowance/application/BaseInfo.vue | 642 ++++++++++++++++++ 3 files changed, 887 insertions(+), 1 deletion(-) create mode 100644 src/components/ebiz/allowance/application/IndexBar.vue diff --git a/src/assets/js/utils/data-dictionary.js b/src/assets/js/utils/data-dictionary.js index 822103fad..08745054c 100644 --- a/src/assets/js/utils/data-dictionary.js +++ b/src/assets/js/utils/data-dictionary.js @@ -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: '母亲' } + ] } diff --git a/src/components/ebiz/allowance/application/IndexBar.vue b/src/components/ebiz/allowance/application/IndexBar.vue new file mode 100644 index 000000000..ddae31ca5 --- /dev/null +++ b/src/components/ebiz/allowance/application/IndexBar.vue @@ -0,0 +1,226 @@ + + + diff --git a/src/views/ebiz/allowance/application/BaseInfo.vue b/src/views/ebiz/allowance/application/BaseInfo.vue index e69de29bb..916d67ccb 100644 --- a/src/views/ebiz/allowance/application/BaseInfo.vue +++ b/src/views/ebiz/allowance/application/BaseInfo.vue @@ -0,0 +1,642 @@ + + +