正在显示
6 个修改的文件
包含
133 行增加
和
99 行删除
pages/common/picker_cell.wxss
0 → 100644
... | ... | @@ -560,7 +560,7 @@ Page({ |
560 | 560 | birth_date.selected = e.detail.value |
561 | 561 | console.log('long_birth_date', Date.parse(new Date(e.detail.value)) / 1000) |
562 | 562 | this.setData({ |
563 | - long_birth_date: (Date.parse(new Date(e.detail.value))/1000), | |
563 | + long_birth_date: (Date.parse(new Date(e.detail.value)) / 1000), | |
564 | 564 | birthDate: birth_date |
565 | 565 | }) |
566 | 566 | }, |
... | ... | @@ -642,10 +642,12 @@ Page({ |
642 | 642 | } else if (this.data.relativeData.selected.length < 1) { |
643 | 643 | this.showtoast('有必填项未填写'); |
644 | 644 | return |
645 | - } else if (this.data.personstatusData.selected.length < 1) { | |
646 | - this.showtoast('有必填项未填写'); | |
647 | - return | |
648 | - } else if (this.data.cardtypeData.selected.length < 1) { | |
645 | + } | |
646 | + // else if (this.data.personstatusData.selected.length < 1) { | |
647 | + // this.showtoast('有必填项未填写'); | |
648 | + // return | |
649 | + // } | |
650 | + else if (this.data.cardtypeData.selected.length < 1) { | |
649 | 651 | this.showtoast('有必填项未填写'); |
650 | 652 | return |
651 | 653 | } else if (this.data.isIdCard && (this.data.card_number.length < 1 && formdata.id_card_no.length < 1)) { |
... | ... | @@ -663,25 +665,28 @@ Page({ |
663 | 665 | } else if (!regMobile.test(formdata.mobile)) { |
664 | 666 | this.showtoast('请输入正确手机号'); |
665 | 667 | return |
666 | - } else if (this.data.investInfo.selected.length < 1) { | |
667 | - this.showtoast('有必填项未填写'); | |
668 | - return | |
669 | - } else if (this.data.specificIndustryInfo.selected.length < 1) { | |
670 | - this.showtoast('有必填项未填写'); | |
671 | - return | |
672 | - } else if (this.data.employeeInfo.selected.length < 1) { | |
673 | - this.showtoast('有必填项未填写'); | |
674 | - return | |
675 | - } else if (formdata.email && formdata.email.length > 0 && !regEmail.test(formdata.email)) { | |
668 | + } | |
669 | + // else if (this.data.investInfo.selected.length < 1) { | |
670 | + // this.showtoast('有必填项未填写'); | |
671 | + // return | |
672 | + // } else if (this.data.specificIndustryInfo.selected.length < 1) { | |
673 | + // this.showtoast('有必填项未填写'); | |
674 | + // return | |
675 | + // } else if (this.data.employeeInfo.selected.length < 1) { | |
676 | + // this.showtoast('有必填项未填写'); | |
677 | + // return | |
678 | + // } | |
679 | + else if (formdata.email && formdata.email.length > 0 && !regEmail.test(formdata.email)) { | |
676 | 680 | this.showtoast('请输入正确邮箱'); |
677 | 681 | return |
678 | - } else if (formdata.company_equity_total && formdata.company_equity_total.length > 0 && !regMoney.test(formdata.company_equity_total)) { | |
679 | - this.showtoast('请输入正确金额'); | |
680 | - return | |
681 | - } else if (formdata.personal_equity_total && formdata.personal_equity_total.length > 0 && !regMoney.test(formdata.personal_equity_total)) { | |
682 | - this.showtoast('请输入正确金额'); | |
683 | - return | |
684 | 682 | } |
683 | + // else if (formdata.company_equity_total && formdata.company_equity_total.length > 0 && !regMoney.test(formdata.company_equity_total)) { | |
684 | + // this.showtoast('请输入正确金额'); | |
685 | + // return | |
686 | + // } else if (formdata.personal_equity_total && formdata.personal_equity_total.length > 0 && !regMoney.test(formdata.personal_equity_total)) { | |
687 | + // this.showtoast('请输入正确金额'); | |
688 | + // return | |
689 | + // } | |
685 | 690 | var new_card_num = '' |
686 | 691 | if (this.data.isIdCard) { |
687 | 692 | if (this.data.card_number.length > 0) { |
... | ... | @@ -718,15 +723,15 @@ Page({ |
718 | 723 | "id_card_type": that.data.cardtypeData.selected, |
719 | 724 | "id_card_no": formdata.id_card_no ? formdata.id_card_no : that.data.card_number, |
720 | 725 | "gender": that.data.genderData.selected, |
721 | - "birth_date": that.data.long_birth_date , | |
726 | + "birth_date": that.data.long_birth_date, | |
722 | 727 | "profession": request_profession, |
723 | 728 | "education": that.data.degreeData.selected, |
724 | 729 | "taxpayer_no": formdata.taxpayer_no ? formdata.taxpayer_no : '', |
725 | - "taxpayer_status": that.data.personstatusData.selected, | |
730 | + // "taxpayer_status": that.data.personstatusData.selected, | |
726 | 731 | "is_martyr_family": that.data.lieshuInfo.selected, |
727 | - "martyr_family_no": that.data.lieshuInfo.selected=='否'?'':formdata.martyr_family_no, | |
732 | + "martyr_family_no": that.data.lieshuInfo.selected == '否' ? '' : formdata.martyr_family_no, | |
728 | 733 | "is_disability": that.data.disabilityInfo.selected, |
729 | - "disability_no": that.data.disabilityInfo.selected=='否'?'':formdata.disability_no, | |
734 | + "disability_no": that.data.disabilityInfo.selected == '否' ? '' : formdata.disability_no, | |
730 | 735 | "is_lonely_man": that.data.lonelyolderInfo.selected, |
731 | 736 | "is_overseas_personnel": "否", |
732 | 737 | "comment": formdata.comment, |
... | ... | @@ -748,7 +753,7 @@ Page({ |
748 | 753 | "district": that.data.birthaddressInfo.address_value[2] |
749 | 754 | }, |
750 | 755 | "huji_address_detail": formdata.huji_address_detail.replace(/(^\s*)|(\s*$)/g, ""), |
751 | - "mobile": formdata.mobile, | |
756 | + "mobile": formdata.mobile + "", | |
752 | 757 | "contact_address": { |
753 | 758 | "province_code": that.data.contactaddressInfo.address_code[0], |
754 | 759 | "province": that.data.contactaddressInfo.address_value[0], |
... | ... | @@ -761,15 +766,15 @@ Page({ |
761 | 766 | "email": formdata.email, |
762 | 767 | "bank": that.data.bankInfo.selected, |
763 | 768 | "bank_account": formdata.bank_account, |
764 | - "join_date": that.data.startDate.selected.length > 0 ? Date.parse(new Date(that.data.startDate.selected)) / 1000 : null, | |
765 | - "separate_date": that.data.endDate.selected.length > 0 ? Date.parse(new Date(that.data.endDate.selected)) / 1000 : null, | |
766 | - "is_employee": that.data.employeeInfo.selected, | |
767 | - "is_specific_profession": that.data.specificIndustryInfo.selected, | |
768 | - "is_investor": that.data.investInfo.selected, | |
769 | - "is_business_angel": that.data.investpersonalInfo.selected, | |
770 | - "company_equity_total": parseFloat(formdata.company_equity_total), | |
771 | - "personal_equity_total": parseFloat(formdata.personal_equity_total), | |
772 | - "employee_no": formdata.employee_no | |
769 | + // "join_date": that.data.startDate.selected.length > 0 ? Date.parse(new Date(that.data.startDate.selected)) / 1000 : null, | |
770 | + // "separate_date": that.data.endDate.selected.length > 0 ? Date.parse(new Date(that.data.endDate.selected)) / 1000 : null, | |
771 | + // "is_employee": that.data.employeeInfo.selected, | |
772 | + // "is_specific_profession": that.data.specificIndustryInfo.selected, | |
773 | + // "is_investor": that.data.investInfo.selected, | |
774 | + // "is_business_angel": that.data.investpersonalInfo.selected, | |
775 | + // "company_equity_total": parseFloat(formdata.company_equity_total), | |
776 | + // "personal_equity_total": parseFloat(formdata.personal_equity_total), | |
777 | + // "employee_no": formdata.employee_no | |
773 | 778 | }, |
774 | 779 | header: { |
775 | 780 | 'content-type': 'application/json', // 默认值 |
... | ... | @@ -795,7 +800,7 @@ Page({ |
795 | 800 | }) |
796 | 801 | }, |
797 | 802 | |
798 | - getProfessionRequest: function () { | |
803 | + getProfessionRequest: function() { | |
799 | 804 | var that = this |
800 | 805 | var pro_index = that.data.profession_index |
801 | 806 | ... | ... |
... | ... | @@ -65,8 +65,8 @@ |
65 | 65 | </view> --> |
66 | 66 | |
67 | 67 | <!-- 注释2018/11/26 --> |
68 | - <template is="picker_cell_normal" data="{{...personstatusData}}" /> | |
69 | - <view class="divide_line"></view> | |
68 | + <!-- <template is="picker_cell_normal" data="{{...personstatusData}}" /> | |
69 | + <view class="divide_line"></view> --> | |
70 | 70 | |
71 | 71 | <!-- <view class='item_body'> |
72 | 72 | <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left'>*</text> |
... | ... | @@ -189,14 +189,18 @@ |
189 | 189 | |
190 | 190 | <view class='data_list'> |
191 | 191 | <view class='data_item'> |
192 | - <view class='item_body'> | |
192 | + <!-- <view class='item_body'> | |
193 | 193 | <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text> |
194 | 194 | <text class='text_black_28 float_left'>联系电话</text> |
195 | 195 | <input class='input_wrap float_right' placeholder='请输入手机号' value='{{taxInfo.mobile}}' name='mobile' type='number' placeholder-class='text_999_28' maxlength='11'></input> |
196 | - </view> | |
196 | + </view> --> | |
197 | 197 | <!-- 非必填部分02 --> |
198 | 198 | <view hidden='{{!isshow02}}'> |
199 | - <view class="divide_line"></view> | |
199 | + <view class='item_body'> | |
200 | + <text class='text_666_30 float_left' style='line-height: 90rpx'>联系电话</text> | |
201 | + <input class='input_wrap float_right' placeholder='请输入手机号' value='{{taxInfo.mobile}}' name='mobile' type='number' placeholder-class='text_999_28' maxlength='11'></input> | |
202 | + </view> | |
203 | + <!-- <view class="divide_line"></view> --> | |
200 | 204 | <!-- <view class='item_body'> |
201 | 205 | <text class='text_666_28 float_left'>联系地址</text> |
202 | 206 | <image class='arrow_wrap' src='/images/arrow_right.png'></image> |
... | ... | @@ -256,7 +260,7 @@ |
256 | 260 | </view> |
257 | 261 | |
258 | 262 | <!-- 任职雇佣信息 --> |
259 | - <view class='head_wrap' style='margin-top:20rpx' bindtap='span' id='3'> | |
263 | + <!-- <view class='head_wrap' style='margin-top:20rpx' bindtap='span' id='3'> | |
260 | 264 | <text class='head_text_wrap1'>任职受雇信息</text> |
261 | 265 | <text class='head_text_wrap2' hidden='{{!isshow03}}'>(点击收起非必填选项)</text> |
262 | 266 | <text class='head_text_wrap2' hidden='{{isshow03}}'>(点击展开非必填选项)</text> |
... | ... | @@ -266,9 +270,9 @@ |
266 | 270 | <view wx:else style='float:right'> |
267 | 271 | <image class='head_image_wrap_down' src='/images/arrow_down.png'></image> |
268 | 272 | </view> |
269 | - </view> | |
273 | + </view> --> | |
270 | 274 | |
271 | - <view class='data_list'> | |
275 | + <view class='data_list' hidden='true'> | |
272 | 276 | <view class='data_item'> |
273 | 277 | <!-- <view class='item_body'> |
274 | 278 | <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left'>*</text> |
... | ... | @@ -339,10 +343,11 @@ |
339 | 343 | <input class='extra_input float_right' value='' name='comment'></input> |
340 | 344 | </view> --> |
341 | 345 | </view> |
342 | - | |
346 | + | |
343 | 347 | </view> |
344 | 348 | |
345 | - <view style='background:#e8e8e8;height:150rpx'></view> | |
349 | + <view hidden='{{isshow02}}' style='background:#f8f8f8;height:500rpx'></view> | |
350 | + <view hidden='{{!isshow02}}' style='background:#f8f8f8;height:200rpx'></view> | |
346 | 351 | |
347 | 352 | <view class="btn_bottom"> |
348 | 353 | <button class="btn_bottom" formType="submit"> 保存</button> | ... | ... |
... | ... | @@ -845,10 +845,12 @@ Page({ |
845 | 845 | } else if (!this.data.isself && this.data.relativeData.selected.length < 1) { |
846 | 846 | this.showtoast('有必填项未填写'); |
847 | 847 | return |
848 | - } else if (this.data.personstatusData.selected.length < 1) { | |
849 | - this.showtoast('有必填项未填写'); | |
850 | - return | |
851 | - } else if (this.data.cardtypeData.selected.length < 1) { | |
848 | + } | |
849 | + // else if (this.data.personstatusData.selected.length < 1) { | |
850 | + // this.showtoast('有必填项未填写'); | |
851 | + // return | |
852 | + // } | |
853 | + else if (this.data.cardtypeData.selected.length < 1) { | |
852 | 854 | this.showtoast('有必填项未填写'); |
853 | 855 | return |
854 | 856 | } else if (this.data.card_number.length < 1) { |
... | ... | @@ -862,31 +864,33 @@ Page({ |
862 | 864 | // this.showtoast('有必填项未填写'); |
863 | 865 | // return |
864 | 866 | // } |
865 | - else if (this.data.mobile.length < 1) { | |
866 | - this.showtoast('有必填项未填写'); | |
867 | - return | |
868 | - } else if (this.data.mobile.length > 0 && !regMobile.test(this.data.mobile)) { | |
869 | - this.showtoast('手机号码有误'); | |
870 | - return | |
871 | - } else if (this.data.investInfo.selected.length < 1) { | |
872 | - this.showtoast('有必填项未填写'); | |
873 | - return | |
874 | - } else if (this.data.specificIndustryInfo.selected.length < 1) { | |
875 | - this.showtoast('有必填项未填写'); | |
876 | - return | |
877 | - } else if (this.data.employeeInfo.selected.length < 1) { | |
878 | - this.showtoast('有必填项未填写'); | |
879 | - return | |
880 | - } else if (formdata.email && formdata.email.length > 0 && !regEmail.test(formdata.email)) { | |
881 | - this.showtoast('请输入正确邮箱'); | |
882 | - return | |
883 | - } else if (this.data.company_equity_total && this.data.company_equity_total.length > 0 && !regMoney.test(this.data.company_equity_total)) { | |
884 | - this.showtoast('请输入正确金额'); | |
885 | - return | |
886 | - } else if (this.data.personal_equity_total && this.data.personal_equity_total.length > 0 && !regMoney.test(this.data.personal_equity_total)) { | |
887 | - this.showtoast('请输入正确金额'); | |
888 | - return | |
889 | - } | |
867 | + // else if (this.data.mobile.length < 1) { | |
868 | + // this.showtoast('有必填项未填写'); | |
869 | + // return | |
870 | + // } else if (this.data.mobile.length > 0 && !regMobile.test(this.data.mobile)) { | |
871 | + // this.showtoast('手机号码有误'); | |
872 | + // return | |
873 | + // } else if (this.data.investInfo.selected.length < 1) { | |
874 | + // this.showtoast('有必填项未填写'); | |
875 | + // return | |
876 | + // } else if (this.data.specificIndustryInfo.selected.length < 1) { | |
877 | + // this.showtoast('有必填项未填写'); | |
878 | + // return | |
879 | + // } else if (this.data.employeeInfo.selected.length < 1) { | |
880 | + // this.showtoast('有必填项未填写'); | |
881 | + // return | |
882 | + // } | |
883 | + // else if (formdata.email && formdata.email.length > 0 && !regEmail.test(formdata.email)) { | |
884 | + // this.showtoast('请输入正确邮箱'); | |
885 | + // return | |
886 | + // } | |
887 | + // else if (this.data.company_equity_total && this.data.company_equity_total.length > 0 && !regMoney.test(this.data.company_equity_total)) { | |
888 | + // this.showtoast('请输入正确金额'); | |
889 | + // return | |
890 | + // } else if (this.data.personal_equity_total && this.data.personal_equity_total.length > 0 && !regMoney.test(this.data.personal_equity_total)) { | |
891 | + // this.showtoast('请输入正确金额'); | |
892 | + // return | |
893 | + // } | |
890 | 894 | // var new_ard_num = '' |
891 | 895 | // if (this.data.isIdCard && this.data.card_number.length > 0) { |
892 | 896 | // new_ard_num = this.data.card_number |
... | ... | @@ -926,7 +930,7 @@ Page({ |
926 | 930 | "profession": request_profession, |
927 | 931 | "education": that.data.degreeData.selected, |
928 | 932 | "taxpayer_no": formdata.taxpayer_no ? formdata.taxpayer_no : that.data.taxInfo.taxpayer_no, |
929 | - "taxpayer_status": that.data.personstatusData.selected, | |
933 | + // "taxpayer_status": that.data.personstatusData.selected, | |
930 | 934 | "is_martyr_family": that.data.lieshuInfo.selected, |
931 | 935 | "martyr_family_no": that.data.lieshuInfo.selected == '否' ? '' : (formdata.martyr_family_no.length > 0 ? formdata.martyr_family_no : that.data.taxInfo.martyr_family_no), |
932 | 936 | "is_disability": that.data.disabilityInfo.selected, |
... | ... | @@ -944,15 +948,15 @@ Page({ |
944 | 948 | "email": formdata.email.length > 0 ? formdata.email : that.data.taxInfo.email, |
945 | 949 | "bank": that.data.bankInfo.selected, |
946 | 950 | "bank_account": formdata.bank_account.length > 0 ? formdata.bank_account : that.data.taxInfo.bank_account, |
947 | - "join_date": that.data.startDate.selected.length > 0 ? Date.parse(new Date(that.data.startDate.selected)) / 1000 : this.data.taxInfo.join_date, | |
948 | - "separate_date": that.data.endDate.selected.length > 0 ? Date.parse(new Date(that.data.endDate.selected)) / 1000 : this.data.taxInfo.separate_date, | |
949 | - "is_employee": that.data.employeeInfo.selected, | |
950 | - "is_specific_profession": that.data.specificIndustryInfo.selected, | |
951 | - "is_investor": that.data.investInfo.selected, | |
952 | - "is_business_angel": that.data.investpersonalInfo.selected, | |
953 | - "company_equity_total": parseFloat(that.data.company_equity_total) , | |
954 | - "personal_equity_total":parseFloat(that.data.personal_equity_total) , | |
955 | - "employee_no": formdata.employee_no.length > 0 ? formdata.employee_no : that.data.taxInfo.employee_no, | |
951 | + // "join_date": that.data.startDate.selected.length > 0 ? Date.parse(new Date(that.data.startDate.selected)) / 1000 : this.data.taxInfo.join_date, | |
952 | + // "separate_date": that.data.endDate.selected.length > 0 ? Date.parse(new Date(that.data.endDate.selected)) / 1000 : this.data.taxInfo.separate_date, | |
953 | + // "is_employee": that.data.employeeInfo.selected, | |
954 | + // "is_specific_profession": that.data.specificIndustryInfo.selected, | |
955 | + // "is_investor": that.data.investInfo.selected, | |
956 | + // "is_business_angel": that.data.investpersonalInfo.selected, | |
957 | + // "company_equity_total": parseFloat(that.data.company_equity_total) , | |
958 | + // "personal_equity_total":parseFloat(that.data.personal_equity_total) , | |
959 | + // "employee_no": formdata.employee_no.length > 0 ? formdata.employee_no : that.data.taxInfo.employee_no, | |
956 | 960 | }, |
957 | 961 | header: { |
958 | 962 | 'content-type': 'application/json', // 默认值 | ... | ... |
... | ... | @@ -69,8 +69,8 @@ |
69 | 69 | <image class='arrow_wrap' src='/images/arrow_right.png'></image> |
70 | 70 | <text class='text_333_28 float_right'>在职</text> |
71 | 71 | </view> --> |
72 | - <template is="picker_cell_normal" data="{{...personstatusData}}" /> | |
73 | - <view class="divide_line"></view> | |
72 | + <!-- <template is="picker_cell_normal" data="{{...personstatusData}}" /> | |
73 | + <view class="divide_line"></view> --> | |
74 | 74 | |
75 | 75 | <!-- <view class='item_body'> |
76 | 76 | <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left'>*</text> |
... | ... | @@ -89,12 +89,14 @@ |
89 | 89 | <!-- <text class='text_333_28 float_right'>{{card_number}}</text> --> |
90 | 90 | <!-- <input class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'&&card_number?card_number:'请输入证件号码'}}" placeholder-class='text_999_28' name='id_card_no' maxlength='24' disabled="{{taxInfo.certification_status=='active'}}"></input> --> |
91 | 91 | <input class='input_wrap float_right' hidden="{{taxInfo.certification_status=='active'}}" placeholder="请输入证件号码" value='{{card_number}}' name='id_card_no' disabled="{{taxInfo.certification_status=='active'}}" maxlength='24' bindblur='bindinputcardnum'></input> |
92 | - <input hidden="{{taxInfo.certification_status!='active'}}" class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'||card_number?card_number:'请输入证件号码'}}" name='id_card_no' disabled="{{taxInfo.certification_status=='active'}}"maxlength='24' bindblur='bindinputcardnum'></input> | |
92 | + <input hidden="{{taxInfo.certification_status!='active'}}" class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'||card_number?card_number:'请输入证件号码'}}" name='id_card_no' disabled="{{taxInfo.certification_status=='active'}}" | |
93 | + maxlength='24' bindblur='bindinputcardnum'></input> | |
93 | 94 | |
94 | 95 | </view> |
95 | 96 | <view wx:else> |
96 | 97 | <input class='input_wrap float_right' hidden="{{taxInfo.certification_status=='active'}}" placeholder="请输入证件号码" value='{{card_number}}' name='id_card_no' disabled="{{taxInfo.certification_status=='active'}}" maxlength='24' bindblur='bindinputcardnum'></input> |
97 | - <input hidden="{{taxInfo.certification_status!='active'}}" class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'||card_number?card_number:'请输入证件号码'}}" name='id_card_no' disabled="{{taxInfo.certification_status=='active'}}" bindblur='bindinputcardnum' maxlength='24'></input> | |
98 | + <input hidden="{{taxInfo.certification_status!='active'}}" class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'||card_number?card_number:'请输入证件号码'}}" name='id_card_no' disabled="{{taxInfo.certification_status=='active'}}" | |
99 | + bindblur='bindinputcardnum' maxlength='24'></input> | |
98 | 100 | </view> |
99 | 101 | </view> |
100 | 102 | <view class="divide_line"></view> |
... | ... | @@ -197,17 +199,22 @@ |
197 | 199 | |
198 | 200 | <view class='data_list'> |
199 | 201 | <view class='data_item'> |
200 | - <view class='item_body'> | |
202 | + <!-- <view class='item_body'> | |
201 | 203 | <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left'>*</text> |
202 | 204 | <text class='text_black_30 float_left' style='line-height: 90rpx'>联系电话</text> |
203 | 205 | <input class='input_wrap float_right' hidden="{{isself||taxInfo.certification_status=='active'}}" placeholder="请输入手机号" value='{{mobile}}' name='mobile' type='number' disabled="{{taxInfo.certification_status=='active'||isself}}" maxlength='11' bindblur='bindinputmobile'></input> |
204 | 206 | |
205 | 207 | <input hidden="{{taxInfo.certification_status!='active'&&!isself}}" class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'||mobile?mobile:'请输入手机号'}}" name='mobile' type='number' disabled="{{taxInfo.certification_status=='active'||isself}}" |
206 | 208 | maxlength='11' bindblur='bindinputmobile'></input> |
207 | - </view> | |
209 | + </view> --> | |
208 | 210 | <!-- 非必填部分02 --> |
209 | 211 | <view hidden='{{!isshow02}}'> |
210 | 212 | <view class="divide_line"></view> |
213 | + <view class='item_body'> | |
214 | + <text class='text_666_30 float_left' style='line-height: 90rpx'>联系电话</text> | |
215 | + <input class='input_wrap float_right' placeholder="请输入手机号" value='{{mobile}}' name='mobile' type='number' maxlength='11' bindblur='bindinputmobile'></input> | |
216 | + </view> | |
217 | + <view class="divide_line"></view> | |
211 | 218 | <!-- <view class='item_body'> |
212 | 219 | <text class='text_666_28 float_left'>联系地址</text> |
213 | 220 | <image class='arrow_wrap' src='/images/arrow_right.png'></image> |
... | ... | @@ -267,7 +274,7 @@ |
267 | 274 | </view> |
268 | 275 | |
269 | 276 | <!-- 任职雇佣信息 --> |
270 | - <view class='head_wrap ' style='margin-top:20rpx ' bindtap='span' id='3'> | |
277 | + <!-- <view class='head_wrap ' style='margin-top:20rpx ' bindtap='span' id='3'> | |
271 | 278 | <text class='head_text_wrap1 '>任职受雇信息</text> |
272 | 279 | <text class='head_text_wrap2' hidden='{{!isshow03}}'>(点击收起非必填选项)</text> |
273 | 280 | <text class='head_text_wrap2' hidden='{{isshow03}}'>(点击展开非必填选项)</text> |
... | ... | @@ -277,9 +284,9 @@ |
277 | 284 | <view hidden='{{isshow03}}' style='float:right '> |
278 | 285 | <image class='head_image_wrap_down ' src='/images/arrow_down.png '></image> |
279 | 286 | </view> |
280 | - </view> | |
287 | + </view> --> | |
281 | 288 | |
282 | - <view class='data_list '> | |
289 | + <view class='data_list ' hidden='true'> | |
283 | 290 | <view class='data_item '> |
284 | 291 | <!-- <view class='item_body '> |
285 | 292 | <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left '>*</text> |
... | ... | @@ -302,7 +309,7 @@ |
302 | 309 | <image class='arrow_wrap ' src='/images/arrow_right.png '></image> |
303 | 310 | <text class='text_333_28 float_right '></text> |
304 | 311 | </view> --> |
305 | - <template is="picker_cell_normal" data="{{...employeeInfo}}" /> | |
312 | + <template is="picker_cell_normal" data="{{...employeeInfo}}" /> | |
306 | 313 | <view hidden='{{!isshow03}}'> |
307 | 314 | <view class="divide_line"></view> |
308 | 315 | <view class='item_body '> |
... | ... | @@ -327,7 +334,7 @@ |
327 | 334 | |
328 | 335 | <view class="divide_line"></view> |
329 | 336 | <view class='item_body '> |
330 | - <text class='text_666_30 float_left 'style='line-height: 90rpx'>工号</text> | |
337 | + <text class='text_666_30 float_left ' style='line-height: 90rpx'>工号</text> | |
331 | 338 | <input class='input_wrap float_right ' name='employee_no' value='{{taxInfo.employee_no}}' placeholder-class='text_999_30' placeholder='请输入工号' maxlength='20'></input> |
332 | 339 | </view> |
333 | 340 | <view class="divide_line"></view> |
... | ... | @@ -339,7 +346,7 @@ |
339 | 346 | <template is="picker_cell_normal" data="{{...investpersonalInfo}}" /> |
340 | 347 | <view class="divide_line"></view> |
341 | 348 | <view class='item_body'> |
342 | - <text class='text_666_30 float_left 'style='line-height: 90rpx'>个人投资总额</text> | |
349 | + <text class='text_666_30 float_left ' style='line-height: 90rpx'>个人投资总额</text> | |
343 | 350 | <input class='input_wrap float_right ' name='personal_equity_total' type='digit' value='{{taxInfo.personal_equity_total}}' placeholder-class='text_999_30' placeholder='请输入个人投资总额(保留两位小数)' maxlength='13' bindblur='personalmoney'></input> |
344 | 351 | </view> |
345 | 352 | <view class="divide_line"></view> |
... | ... | @@ -353,7 +360,9 @@ |
353 | 360 | </view> |
354 | 361 | </view> |
355 | 362 | |
356 | - <view style='background:#f8f8f8;height:150rpx '></view> | |
363 | + <view hidden='{{isshow02}}' style='background:#f8f8f8;height:500rpx'></view> | |
364 | + <view hidden='{{!isshow02}}' style='background:#f8f8f8;height:200rpx'></view> | |
365 | + | |
357 | 366 | <view class="btn_bottom"> |
358 | 367 | <button class="btn_bottom" formType="submit"> 保存</button> |
359 | 368 | </view> | ... | ... |
请
注册
或
登录
后发表评论