正在显示
2 个修改的文件
包含
5 行增加
和
5 行删除
... | ... | @@ -399,7 +399,7 @@ Page({ |
399 | 399 | this.data.overseas = tax_info.is_overseas_personnel |
400 | 400 | this.data.countryData.selected = tax_info.native |
401 | 401 | this.data.birthCountryData.selected = tax_info.brith_native |
402 | - this.data.taxpayerTypeData.selected = tax_info.taxpayer_type | |
402 | + this.data.taxpayerTypeData.selected = tax_info.taxpayer_type =='resident'?'居民':'非居民' | |
403 | 403 | |
404 | 404 | this.data.mobile = tax_info.mobile |
405 | 405 | this.data.investInfo.selected = tax_info.is_investor |
... | ... | @@ -1173,7 +1173,7 @@ Page({ |
1173 | 1173 | this.showtoast('请选择其他证照类型'); |
1174 | 1174 | return |
1175 | 1175 | } |
1176 | - if (this.data.hasOtherCard && !this.data.other_card_number.length) { | |
1176 | + if (this.data.hasOtherCard && !formdata.other_card_number.length) { | |
1177 | 1177 | this.showtoast('请输入其他证照号码'); |
1178 | 1178 | return |
1179 | 1179 | } |
... | ... | @@ -1298,12 +1298,12 @@ Page({ |
1298 | 1298 | "other_name": that.data.other_name, |
1299 | 1299 | "family_ties": '本人',//that.data.relativeData.selected, |
1300 | 1300 | "native": that.data.countryData.selected, |
1301 | - "taxpayer_type": that.data.taxpayerTypeData.selected, | |
1301 | + "taxpayer_type": that.data.taxpayerTypeData.selected == '是' ? 'resident' :'non-resident', | |
1302 | 1302 | "is_overseas_personnel": that.data.overseas, |
1303 | 1303 | "id_card_type": ''+that.data.cardtypeData.selected_code, |
1304 | 1304 | "id_card_no": that.data.card_number, |
1305 | 1305 | "other_id_card_type": that.data.otherCardtypeData.selected_code, |
1306 | - "other_id_card_no": that.data.other_card_number, | |
1306 | + "other_id_card_no": formdata.other_card_number, | |
1307 | 1307 | "gender": that.data.genderData.selected, |
1308 | 1308 | "birth_date": that.data.long_birth_date, |
1309 | 1309 | "first_entry_date": that.data.firstEntryDate.datelong, | ... | ... |
... | ... | @@ -79,7 +79,7 @@ |
79 | 79 | <text class='red_star_right_10'>*</text> |
80 | 80 | <text class='text_777_30 float_left' style='line-height: 90rpx'>其他证照号码</text> |
81 | 81 | <view> |
82 | - <input class='input_wrap' placeholder="请输入证照号码" value="{{other_card_number}}" name='other_id_card_no' maxlength='30'></input> | |
82 | + <input class='input_wrap' placeholder="请输入证照号码" value="{{other_card_number}}" name='other_card_number' maxlength='30'></input> | |
83 | 83 | </view> |
84 | 84 | </view> |
85 | 85 | <view class="divide_line_30"></view> | ... | ... |
请
注册
或
登录
后发表评论