正在显示
1 个修改的文件
包含
5 行增加
和
0 行删除
| ... | ... | @@ -34,6 +34,7 @@ Page({ |
| 34 | 34 | legal_entity_id: "", |
| 35 | 35 | legal_entity: "", |
| 36 | 36 | supporttype:"", |
| 37 | + is_single:"", | |
| 37 | 38 | share_method:"", |
| 38 | 39 | data: { |
| 39 | 40 | hasLover:false, |
| ... | ... | @@ -514,6 +515,7 @@ Page({ |
| 514 | 515 | } else if ("support_duty" == options.status) { |
| 515 | 516 | deduction_amount = frontPage.data.reduce_amount |
| 516 | 517 | this.supporttype = frontPage.data.issinglechildData.selected == '是' ? 'D' : 'S',//是否独生 |
| 518 | + this.is_single = frontPage.data.issinglechildData.selected == '是' ? 'y' : 'n',//是否独生 | |
| 517 | 519 | this.share_method = frontPage.data.shareMethodData.selected |
| 518 | 520 | } else if (frontPage.data.house_type == "rent" || frontPage.data.house_type == "house_fund_rent") { |
| 519 | 521 | this.getbanklist() |
| ... | ... | @@ -1068,6 +1070,7 @@ Page({ |
| 1068 | 1070 | return |
| 1069 | 1071 | } |
| 1070 | 1072 | } |
| 1073 | + newdata.has_spouse = this.data.hasLover?'y':'n' | |
| 1071 | 1074 | newdata.relationship = this.data.taxperson_relativeData.selected |
| 1072 | 1075 | newdata.percent = parseFloat(this.data.childrenpercentData.selected.replace("%","")) |
| 1073 | 1076 | newdata.children_id_card_type = '1' //this.data.childrencardtypeData.selected |
| ... | ... | @@ -1172,6 +1175,7 @@ Page({ |
| 1172 | 1175 | // newdata.percentage = parseFloat(formdata.percentage) |
| 1173 | 1176 | // } |
| 1174 | 1177 | newdata.support_type = this.supporttype |
| 1178 | + newdata.is_single = this.is_single | |
| 1175 | 1179 | if (this.supporttype == 'S' && this.share_method.length){ |
| 1176 | 1180 | newdata.share_method = this.share_method |
| 1177 | 1181 | } |
| ... | ... | @@ -1341,6 +1345,7 @@ Page({ |
| 1341 | 1345 | return |
| 1342 | 1346 | } |
| 1343 | 1347 | } |
| 1348 | + newdata.has_spouse = this.data.hasLover ? 'y' : 'n' | |
| 1344 | 1349 | newdata.id_card_no = newdata.spouse_id_card_no |
| 1345 | 1350 | newdata.id_card_type = '1' //this.data.lovercardtypeData.selected |
| 1346 | 1351 | newdata.birthday = this.data.loverbirthDate.datelong > 0 ? this.data.loverbirthDate.datelong : 0 | ... | ... |
请
注册
或
登录
后发表评论