You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
3.4 KiB
131 lines
3.4 KiB
1 year ago
|
// subpages/addResi/com/expandForm.js
|
||
|
|
||
|
Component({
|
||
|
|
||
|
/**
|
||
|
* 组件的属性列表
|
||
|
*/
|
||
|
properties: {
|
||
|
"formList": {
|
||
|
"type": Array,
|
||
|
"value": []
|
||
|
},
|
||
|
"popupTitle":{
|
||
|
"type": String,
|
||
|
"value": ""
|
||
|
}
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 组件的初始数据
|
||
|
*/
|
||
|
data: {
|
||
|
form:{
|
||
|
// 党员信息
|
||
|
parymemberInfoDto: {
|
||
|
joinTime: null,
|
||
|
positiveTime: null,
|
||
|
partyOrgId: null,
|
||
|
flowFlag: null,
|
||
|
flowActNum: null,
|
||
|
partyJob: null,
|
||
|
duty: null,
|
||
|
retiredFlag: null,
|
||
|
centerFlag: null,
|
||
|
studyNotNeed: null,
|
||
|
joinBranchName: null,
|
||
|
joinCommunityTime: null
|
||
|
},
|
||
|
// 残疾信息
|
||
|
healthDto: {
|
||
|
disabilityCategoryCode: null,
|
||
|
disabilityLevel: null,
|
||
|
disabilityNum: null,
|
||
|
disabilityDesc: null,
|
||
|
guardianFlag: null,
|
||
|
guardianName: null,
|
||
|
guardianMobile:null,
|
||
|
specialSkillFlag: null,
|
||
|
workCapacityFlag: null
|
||
|
},
|
||
|
// 大病信息
|
||
|
seriousIllnessDto: {
|
||
|
illnessCodes: []
|
||
|
},
|
||
|
// 慢病信息
|
||
|
chronicDiseaseDto: {
|
||
|
chronicDiseaseCodes: []
|
||
|
},
|
||
|
// 死亡信息
|
||
|
deathDto: {
|
||
|
deathTime: null
|
||
|
},
|
||
|
// 老年人
|
||
|
oldPeopleDto: {
|
||
|
oldPeopleCategories: [],
|
||
|
resideSituation: null,
|
||
|
oldSubsidy: null
|
||
|
},
|
||
|
// 低保人员
|
||
|
subsistenceAllowanceDto: {
|
||
|
reasons: [],
|
||
|
category:null ,
|
||
|
},
|
||
|
// 退役军人
|
||
|
veteranDto: {
|
||
|
joinArmyTime: null,
|
||
|
leaveArmyTime: null,
|
||
|
serviceUnit: null,
|
||
|
receiveUnit: null,
|
||
|
settlementAmount: null,
|
||
|
trainDesc: null,
|
||
|
employmentSituation: null,
|
||
|
pubWelfareJobFlag: null
|
||
|
},
|
||
|
|
||
|
// 保障房人员
|
||
|
ensureHouseDto: {
|
||
|
liveCommunity: null,
|
||
|
housingNature: null
|
||
|
},
|
||
|
// 统战人员
|
||
|
unitedFrontDto: {
|
||
|
unitedFrontType: null
|
||
|
},
|
||
|
//特扶人员
|
||
|
specialSupportDto: {
|
||
|
specialSupportType: null,//特扶类别
|
||
|
childName: null,//子女姓名
|
||
|
childGender: null,//子女性别
|
||
|
childDeathDate: null,//子女死亡日期
|
||
|
childDisabilityCategoryCode: null,//伤残类别
|
||
|
childDisabilityLevel: null,//伤残等级
|
||
|
},
|
||
|
// 志愿者
|
||
|
volunteerDto: {
|
||
|
volunteerCategory: []
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
// onReady(){
|
||
|
// },
|
||
|
ready: async function () {
|
||
|
console.log(this.data.formList);
|
||
|
},
|
||
|
/**
|
||
|
* 组件的方法列表
|
||
|
*/
|
||
|
methods: {
|
||
|
updata(){
|
||
|
|
||
|
},
|
||
|
hideForm(){
|
||
|
this.triggerEvent('hideExpandForm')
|
||
|
},
|
||
|
confirm(){
|
||
|
this.triggerEvent('confirmExpandForm')
|
||
|
},
|
||
|
|
||
|
|
||
|
}
|
||
|
})
|