提交 ed0936acea7d98a11054e5d77d2fa543141788c9

作者 pangy
2 个父辈 d278e155 630ae5e6

Merge branch 'dev_py' into dev2.0

@@ -515,7 +515,7 @@ Page({ @@ -515,7 +515,7 @@ Page({
515 reduce_typeData.selected = '年度' 515 reduce_typeData.selected = '年度'
516 } 516 }
517 } 517 }
518 - var title = '添加' + AddTypeNames[nameKey] 518 + var title = AddTypeNames[nameKey]
519 519
520 this.setData({ 520 this.setData({
521 title: title, 521 title: title,
1 -{}  
  1 +{
  2 + "navigationBarTextStyle": "black",
  3 + "navigationBarBackgroundColor": "#FFFFFF"
  4 +}
1 { 1 {
2 - "navigationBarTitleText": "预扣预缴详情" 2 + "navigationBarTitleText": "预扣预缴详情",
  3 + "navigationBarTextStyle": "black",
  4 + "navigationBarBackgroundColor": "#FFFFFF"
3 } 5 }
1 { 1 {
2 - "navigationBarTitleText": "家庭成员基本信息" 2 + "navigationBarTitleText": "家庭成员基本信息",
  3 + "navigationBarTextStyle": "black",
  4 + "navigationBarBackgroundColor": "#FFFFFF"
3 } 5 }
@@ -33,15 +33,6 @@ Page({ @@ -33,15 +33,6 @@ Page({
33 personal_equity_total:0, 33 personal_equity_total:0,
34 company_equity_total:0, 34 company_equity_total:0,
35 huji_address_detail: '', 35 huji_address_detail: '',
36 - relativeData: {  
37 - isrequre: true,  
38 - label: '关系',  
39 - bindtype: 'relative',  
40 - placeholder: '请选择亲属关系',  
41 - selected: '',  
42 - values: ["子女", "配偶"],  
43 - onChange: 'onPickerSelect'  
44 - },  
45 personstatusData: { 36 personstatusData: {
46 isrequre: true, 37 isrequre: true,
47 label: '纳税人状态', 38 label: '纳税人状态',
@@ -281,13 +272,6 @@ Page({ @@ -281,13 +272,6 @@ Page({
281 console.log('curdate', curdate) 272 console.log('curdate', curdate)
282 273
283 this.data.name = tax_info.name 274 this.data.name = tax_info.name
284 - if (this.data.isself) {  
285 - this.data.relativeData.disabled = true  
286 - this.data.relativeData.selected = tax_info.family_ties  
287 - } else {  
288 - this.data.relativeData.disabled = false  
289 - this.data.relativeData.selected = tax_info.family_ties  
290 - }  
291 if (tax_info.certification_status == 'active') {//已通过拍摄身份证认证过,不能修改 275 if (tax_info.certification_status == 'active') {//已通过拍摄身份证认证过,不能修改
292 this.data.genderData.disabled = true 276 this.data.genderData.disabled = true
293 this.data.birthDate.disabled = true 277 this.data.birthDate.disabled = true
@@ -337,7 +321,6 @@ Page({ @@ -337,7 +321,6 @@ Page({
337 this.data.investpersonalInfo.selected = tax_info.is_business_angel 321 this.data.investpersonalInfo.selected = tax_info.is_business_angel
338 this.setData({ 322 this.setData({
339 huji_address_detail: tax_info.huji_address_detail.replace(/(^\s*)|(\s*$)/g, ""), 323 huji_address_detail: tax_info.huji_address_detail.replace(/(^\s*)|(\s*$)/g, ""),
340 - relativeData: this.data.relativeData,  
341 name: this.data.name, 324 name: this.data.name,
342 personstatusData: this.data.personstatusData, 325 personstatusData: this.data.personstatusData,
343 cardtypeData: this.data.cardtypeData, 326 cardtypeData: this.data.cardtypeData,
@@ -586,13 +569,6 @@ Page({ @@ -586,13 +569,6 @@ Page({
586 onPickerSelect: function(e) { 569 onPickerSelect: function(e) {
587 console.log('picker发送选择改变,携带值为', e) 570 console.log('picker发送选择改变,携带值为', e)
588 switch (e.currentTarget.id) { 571 switch (e.currentTarget.id) {
589 - case 'relative':  
590 - var relative_data = this.data.relativeData  
591 - relative_data.selected = relative_data.values[e.detail.value]  
592 - this.setData({  
593 - relativeData: relative_data  
594 - })  
595 - break;  
596 case 'personstatus': 572 case 'personstatus':
597 var personstatus_data = this.data.personstatusData 573 var personstatus_data = this.data.personstatusData
598 personstatus_data.selected = personstatus_data.values[e.detail.value] 574 personstatus_data.selected = personstatus_data.values[e.detail.value]
@@ -865,9 +841,6 @@ Page({ @@ -865,9 +841,6 @@ Page({
865 } else if (this.data.name.length > 0 && !regname.test(this.data.name)) { 841 } else if (this.data.name.length > 0 && !regname.test(this.data.name)) {
866 this.showtoast('请输入正确姓名'); 842 this.showtoast('请输入正确姓名');
867 return 843 return
868 - } else if (!this.data.isself && this.data.relativeData.selected.length < 1) {  
869 - this.showtoast('请选择关系');  
870 - return  
871 } 844 }
872 // else if (this.data.personstatusData.selected.length < 1) { 845 // else if (this.data.personstatusData.selected.length < 1) {
873 // this.showtoast('有必填项未填写'); 846 // this.showtoast('有必填项未填写');
@@ -944,7 +917,7 @@ Page({ @@ -944,7 +917,7 @@ Page({
944 data: { 917 data: {
945 'certification_status': that.getCertifyStatus(formdata), 918 'certification_status': that.getCertifyStatus(formdata),
946 "name": that.data.name, 919 "name": that.data.name,
947 - "family_ties": that.data.relativeData.selected, 920 + "family_ties": '本人',//that.data.relativeData.selected,
948 "native": "中国", 921 "native": "中国",
949 "taxpayer_type":"居民", 922 "taxpayer_type":"居民",
950 "is_overseas_personnel": "否", 923 "is_overseas_personnel": "否",
1 { 1 {
2 - "navigationBarTitleText": "纳税人基本信息" 2 + "navigationBarTitleText": "纳税人基本信息",
  3 + "navigationBarTextStyle": "black",
  4 + "navigationBarBackgroundColor": "#FFFFFF"
3 } 5 }
@@ -3,33 +3,7 @@ @@ -3,33 +3,7 @@
3 3
4 <view class='page'> 4 <view class='page'>
5 <form bindsubmit='formSubmit'> 5 <form bindsubmit='formSubmit'>
6 -  
7 - <!-- 成员关系 -->  
8 - <view class='head_wrap' hidden="{{isself}}">  
9 - <text class='head_text_wrap1'>成员关系</text>  
10 - </view>  
11 - <view class='data_list' hidden="{{isself}}">  
12 - <view class='data_item'>  
13 - <view class='item_body'>  
14 - <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>  
15 - <text class='text_black_30 float_left' style='line-height: 90rpx'>姓名</text>  
16 - <!-- <input class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'&&name?name:'请输入姓名'}}" name='name' disabled="{{taxInfo.certification_status=='active'}}"></input> -->  
17 -  
18 - <input class='input_wrap float_right' hidden="{{taxInfo.certification_status=='active'}}" placeholder="请输入姓名" value='{{name}}' name='name' disabled="{{taxInfo.certification_status=='active'}}" maxlength='15' bindblur='bindinputname'></input>  
19 - <input hidden="{{taxInfo.certification_status!='active'}}" class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'||name?name:'请输入姓名'}}" name='name' disabled="{{taxInfo.certification_status=='active'}}" maxlength='15' bindblur='bindinputname'></input>  
20 - </view>  
21 - <view class="divide_line"></view>  
22 - <!-- <view class='item_body' bindtap='openpicker'>  
23 - <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left'>*</text>  
24 - <text class='text_black_28 float_left'>关系</text>  
25 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
26 - <text class='text_333_28 float_right'>请选择关系</text>  
27 - </view> -->  
28 -  
29 - <template is="picker_cell_normal" data="{{...relativeData}}" />  
30 - </view>  
31 - </view>  
32 - 6 + <view class="divide_line"></view>
33 <!-- 基本信息 --> 7 <!-- 基本信息 -->
34 <view class='head_wrap' bindtap='span' id='1'> 8 <view class='head_wrap' bindtap='span' id='1'>
35 <text class='head_text_wrap1'>基本信息</text> 9 <text class='head_text_wrap1'>基本信息</text>
@@ -41,16 +15,14 @@ @@ -41,16 +15,14 @@
41 <view wx:else style='float:right'> 15 <view wx:else style='float:right'>
42 <image class='head_image_wrap_down' src='/images/arrow_down.png'></image> 16 <image class='head_image_wrap_down' src='/images/arrow_down.png'></image>
43 </view> 17 </view>
44 - <!-- <image class='{{isshow01}}?head_image_wrap_up:head_image_wrap_down' src="{{isshow01?'/images/arrow_up.png':'/images/arrow_down.png'}}"></image> -->  
45 </view> 18 </view>
46 19
47 <view class='data_list'> 20 <view class='data_list'>
48 <view class='data_item'> 21 <view class='data_item'>
  22 + <view class="divide_line"></view>
49 <view class='item_body' hidden="{{!isself}}"> 23 <view class='item_body' hidden="{{!isself}}">
50 <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text> 24 <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
51 <text class='text_black_30 float_left' style='line-height: 90rpx'>姓名</text> 25 <text class='text_black_30 float_left' style='line-height: 90rpx'>姓名</text>
52 - <!-- <input class='input_wrap float_right' placeholder-class='text_999_28' placeholder="{{taxInfo.certification_status=='active'&&name?name:'请输入姓名'}}" disabled="{{taxInfo.certification_status=='active'}}"></input> -->  
53 -  
54 <input class='input_wrap float_right' hidden="{{taxInfo.certification_status=='active'}}" placeholder="请输入姓名" value='{{name}}' disabled="{{taxInfo.certification_status=='active'}}" bindblur='bindinputname' style='line-height: 90rpx'></input> 26 <input class='input_wrap float_right' hidden="{{taxInfo.certification_status=='active'}}" placeholder="请输入姓名" value='{{name}}' disabled="{{taxInfo.certification_status=='active'}}" bindblur='bindinputname' style='line-height: 90rpx'></input>
55 <input hidden="{{taxInfo.certification_status!='active'}}" class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'||name?name:'请输入姓名'}}" disabled="{{taxInfo.certification_status=='active'}}" bindblur='bindinputname' style='line-height: 90rpx'></input> 27 <input hidden="{{taxInfo.certification_status!='active'}}" class='input_wrap float_right' placeholder="{{taxInfo.certification_status=='active'||name?name:'请输入姓名'}}" disabled="{{taxInfo.certification_status=='active'}}" bindblur='bindinputname' style='line-height: 90rpx'></input>
56 </view> 28 </view>
@@ -74,21 +46,6 @@ @@ -74,21 +46,6 @@
74 <text class='text_999_30 float_right' style='line-height: 90rpx'>否</text> 46 <text class='text_999_30 float_right' style='line-height: 90rpx'>否</text>
75 </view> 47 </view>
76 <view class="divide_line"></view> 48 <view class="divide_line"></view>
77 - <!-- <view class='item_body'>  
78 - <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left'>*</text>  
79 - <text class='text_black_28 float_left'>纳税人状态</text>  
80 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
81 - <text class='text_333_28 float_right'>在职</text>  
82 - </view> -->  
83 - <!-- <template is="picker_cell_normal" data="{{...personstatusData}}" />  
84 - <view class="divide_line"></view> -->  
85 -  
86 - <!-- <view class='item_body'>  
87 - <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left'>*</text>  
88 - <text class='text_black_28 float_left'>证照类型</text>  
89 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
90 - <text class='text_333_28 float_right'>居民身份证</text>  
91 - </view> -->  
92 <template is="picker_cell_normal" data="{{...cardtypeData}}" /> 49 <template is="picker_cell_normal" data="{{...cardtypeData}}" />
93 <view class="divide_line"></view> 50 <view class="divide_line"></view>
94 51
@@ -97,36 +54,14 @@ @@ -97,36 +54,14 @@
97 <text class='text_black_30 float_left' style='line-height: 90rpx'>证照号码</text> 54 <text class='text_black_30 float_left' style='line-height: 90rpx'>证照号码</text>
98 <view> 55 <view>
99 <image wx:if="{{isIdCard}}" class='image_camera float_right' src='/images/camera.png' bindtap='getIdInfo' hidden="{{taxInfo.certification_status=='active'}}"></image> 56 <image wx:if="{{isIdCard}}" class='image_camera float_right' src='/images/camera.png' bindtap='getIdInfo' hidden="{{taxInfo.certification_status=='active'}}"></image>
100 - <!-- <text class='text_333_28 float_right'>{{card_number}}</text> -->  
101 - <!-- <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> -->  
102 <input class='input_wrap float_right' hidden="{{taxInfo.certification_status=='active'}}" placeholder="请输入证照号码" value='{{card_number}}' name='id_card_no' maxlength='18' bindblur='idcardblur' bindinput = 'bindinputcardnum'></input> 57 <input class='input_wrap float_right' hidden="{{taxInfo.certification_status=='active'}}" placeholder="请输入证照号码" value='{{card_number}}' name='id_card_no' maxlength='18' bindblur='idcardblur' bindinput = 'bindinputcardnum'></input>
103 <input class='input_wrap float_right' hidden="{{taxInfo.certification_status!='active'}}" placeholder="{{card_number?card_number:'身份证号获取失败'}}" name='id_card_no' disabled='true'></input> 58 <input class='input_wrap float_right' hidden="{{taxInfo.certification_status!='active'}}" placeholder="{{card_number?card_number:'身份证号获取失败'}}" name='id_card_no' disabled='true'></input>
104 </view> 59 </view>
105 </view> 60 </view>
106 -  
107 - <!-- <view class='item_body'>  
108 - <text class='head_red_star float_left'>*</text>  
109 - <text class='text_black_28 float_left'>是否境外人员</text>  
110 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
111 - <text class='text_333_28 float_right'>否</text>  
112 - </view> -->  
113 - <!-- <template is="picker_cell_normal" data="{{...forignerInfo}}" /> -->  
114 - <!-- 非必填部分 -->  
115 <view hidden='{{!isshow01}}'> 61 <view hidden='{{!isshow01}}'>
116 <view class="divide_line"></view> 62 <view class="divide_line"></view>
117 -  
118 - <!-- <view class='item_body'>  
119 - <text class='text_666_28 float_left'>性别</text>  
120 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
121 - <text class='text_333_28 float_right'>男</text>  
122 - </view> -->  
123 <template is="picker_cell_normal" data="{{...genderData}}" /> 63 <template is="picker_cell_normal" data="{{...genderData}}" />
124 <view class="divide_line"></view> 64 <view class="divide_line"></view>
125 - <!-- <view class='item_body'>  
126 - <text class='text_666_28 float_left'>出生年月</text>  
127 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
128 - <text class='text_333_28 float_right'></text>  
129 - </view> -->  
130 <template is="picker_cell_normal" data="{{...birthDate}}" /> 65 <template is="picker_cell_normal" data="{{...birthDate}}" />
131 </view> 66 </view>
132 </view> 67 </view>
@@ -147,44 +82,16 @@ @@ -147,44 +82,16 @@
147 82
148 <view class='data_list'> 83 <view class='data_list'>
149 <view class='data_item'> 84 <view class='data_item'>
  85 + <view class="divide_line"></view>
150 <view class='item_body'> 86 <view class='item_body'>
151 <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text> 87 <text style='color:red;font-size: 30rpx;line-height: 90rpx;float:left'>*</text>
152 <text class='text_black_30 float_left' style='line-height: 90rpx'>手机号码</text> 88 <text class='text_black_30 float_left' style='line-height: 90rpx'>手机号码</text>
153 <input class='input_wrap float_right' placeholder="请输入手机号" value='{{mobile}}' name='mobile' type='number' maxlength='11' bindblur='bindinputmobile'></input> 89 <input class='input_wrap float_right' placeholder="请输入手机号" value='{{mobile}}' name='mobile' type='number' maxlength='11' bindblur='bindinputmobile'></input>
154 </view> 90 </view>
155 - <!-- <view class='item_body'>  
156 - <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left'>*</text>  
157 - <text class='text_black_30 float_left' style='line-height: 90rpx'>联系电话</text>  
158 - <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>  
159 91
160 - <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}}"  
161 - maxlength='11' bindblur='bindinputmobile'></input>  
162 - </view> -->  
163 <!-- 非必填部分02 --> 92 <!-- 非必填部分02 -->
164 <view hidden='{{!isshow02}}'> 93 <view hidden='{{!isshow02}}'>
165 <view class="divide_line"></view> 94 <view class="divide_line"></view>
166 - <!-- <view class='item_body'>  
167 - <text class='text_666_28 float_left'>联系地址</text>  
168 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
169 - <text class='text_333_28 float_right'></text>  
170 - </view> -->  
171 - <!-- <template is="picker_cell_normal" data="{{...contactaddressInfo}}" />  
172 - <view class="divide_line"></view>  
173 - <view class='item_body'>  
174 - <text class='text_666_30 float_left' style='line-height: 90rpx'>详细地址</text>  
175 - <input class='input_wrap float_right' name='contact_address_detail' value='{{taxInfo.contact_address_detail}}' placeholder-class='text_999_30' placeholder='请输入详细联系地址'></input>  
176 - </view>  
177 - <view class="divide_line"></view> -->  
178 - <!-- <view class='item_body'>  
179 - <text class='text_666_28 float_left'>开户银行</text>  
180 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
181 - <text class='text_333_28 float_right'></text>  
182 - </view> -->  
183 - <!-- <view class=' item_body '>  
184 - <text class='text_666_28 float_left '>居住地</text>  
185 - <image class='arrow_wrap ' src='/images/arrow_right.png '></image>  
186 - <text class='text_333_28 float_right '></text>  
187 - </view> -->  
188 <template is="picker_cell_normal" data="{{...currentaddressInfo}}" /> 95 <template is="picker_cell_normal" data="{{...currentaddressInfo}}" />
189 <view class="divide_line"></view> 96 <view class="divide_line"></view>
190 <view class='item_body'> 97 <view class='item_body'>
@@ -192,11 +99,6 @@ @@ -192,11 +99,6 @@
192 <input class='input_wrap float_right ' name='current_address_detail' value="{{taxInfo.current_address_detail}}" placeholder-class='text_999_30' placeholder='请输入详细居住地址'></input> 99 <input class='input_wrap float_right ' name='current_address_detail' value="{{taxInfo.current_address_detail}}" placeholder-class='text_999_30' placeholder='请输入详细居住地址'></input>
193 </view> 100 </view>
194 <view class="divide_line"></view> 101 <view class="divide_line"></view>
195 - <!-- <view class='item_body '>  
196 - <text class='text_666_28 float_left '>户籍所在地</text>  
197 - <image class='arrow_wrap ' src='/images/arrow_right.png '></image>  
198 - <text class='text_333_28 float_right '></text>  
199 - </view> -->  
200 <template is="picker_cell_normal" data="{{...birthaddressInfo}}" /> 102 <template is="picker_cell_normal" data="{{...birthaddressInfo}}" />
201 <view class="divide_line"></view> 103 <view class="divide_line"></view>
202 <view class='item_body '> 104 <view class='item_body '>
@@ -229,17 +131,8 @@ @@ -229,17 +131,8 @@
229 </view> 131 </view>
230 <view class='data_list'> 132 <view class='data_list'>
231 <view class='data_item'> 133 <view class='data_item'>
232 - <view hidden='{{!isshow03}}'>  
233 - <!-- <view class='item_body'>  
234 - <text class='text_666_28 float_left'>职业</text>  
235 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
236 - <text class='text_333_28 float_right'></text>  
237 - </view> -->  
238 - <!-- <view class='item_body'>  
239 - <text class='text_666_28 float_left'>学历</text>  
240 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
241 - <text class='text_333_28 float_right'></text>  
242 - </view> --> 134 + <view hidden='{{!isshow03}}'>
  135 + <view class="divide_line"></view>
243 <template is="picker_cell_normal" data="{{...degreeData}}" /> 136 <template is="picker_cell_normal" data="{{...degreeData}}" />
244 <view class="divide_line"></view> 137 <view class="divide_line"></view>
245 <template is="picker_cell_normal" data="{{...professionData}}" /> 138 <template is="picker_cell_normal" data="{{...professionData}}" />
@@ -251,17 +144,6 @@ @@ -251,17 +144,6 @@
251 <input class='input_wrap float_right' name='bank_account' value='{{taxInfo.bank_account}}' placeholder-class='text_999_30' placeholder='请输入银行账号' maxlength='24'></input> 144 <input class='input_wrap float_right' name='bank_account' value='{{taxInfo.bank_account}}' placeholder-class='text_999_30' placeholder='请输入银行账号' maxlength='24'></input>
252 </view> 145 </view>
253 <view class="divide_line"></view> 146 <view class="divide_line"></view>
254 -  
255 - <!-- <view class='item_body'>  
256 - <text class='text_666_30 float_left' style='line-height: 90rpx'>纳税人识别号</text>  
257 - <input class='input_wrap float_right' name='taxpayer_no' type='number' value='{{taxInfo.taxpayer_no}}' placeholder-class='text_999_30' placeholder='请输入纳税人识别号' maxlength='24'></input>  
258 - </view>  
259 - <view class="divide_line"></view> -->  
260 - <!-- <view class='item_body'>  
261 - <text class='text_666_28 float_left'>是否残疾</text>  
262 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
263 - <text class='text_333_28 float_right'></text>  
264 - </view> -->  
265 <template is="picker_cell_normal" data="{{...disabilityInfo}}" /> 147 <template is="picker_cell_normal" data="{{...disabilityInfo}}" />
266 <view class="divide_line" hidden="{{disabilityInfo.selected!='是'}}"></view> 148 <view class="divide_line" hidden="{{disabilityInfo.selected!='是'}}"></view>
267 <view class='item_body' hidden="{{disabilityInfo.selected!='是'}}"> 149 <view class='item_body' hidden="{{disabilityInfo.selected!='是'}}">
@@ -269,11 +151,7 @@ @@ -269,11 +151,7 @@
269 <input class='input_wrap float_right' name='disability_no' type='number' value='{{taxInfo.disability_no}}' placeholder-class='text_999_30' placeholder='请输入残疾证号' maxlength='24'></input> 151 <input class='input_wrap float_right' name='disability_no' type='number' value='{{taxInfo.disability_no}}' placeholder-class='text_999_30' placeholder='请输入残疾证号' maxlength='24'></input>
270 </view> 152 </view>
271 <view class="divide_line"></view> 153 <view class="divide_line"></view>
272 - <!-- <view class='item_body'>  
273 - <text class='text_666_28 float_left'>是否烈属</text>  
274 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
275 - <text class='text_333_28 float_right'></text>  
276 - </view> --> 154 +
277 <template is="picker_cell_normal" data="{{...lieshuInfo}}" /> 155 <template is="picker_cell_normal" data="{{...lieshuInfo}}" />
278 <view class="divide_line" hidden="{{lieshuInfo.selected!='是'}}"></view> 156 <view class="divide_line" hidden="{{lieshuInfo.selected!='是'}}"></view>
279 <view class='item_body' hidden="{{lieshuInfo.selected!='是'}}"> 157 <view class='item_body' hidden="{{lieshuInfo.selected!='是'}}">
@@ -281,11 +159,7 @@ @@ -281,11 +159,7 @@
281 <input class='input_wrap float_right' name='martyr_family_no' type='number' value='{{taxInfo.martyr_family_no}}' placeholder-class='text_999_30' placeholder='请输入烈属证号' maxlength='24'></input> 159 <input class='input_wrap float_right' name='martyr_family_no' type='number' value='{{taxInfo.martyr_family_no}}' placeholder-class='text_999_30' placeholder='请输入烈属证号' maxlength='24'></input>
282 </view> 160 </view>
283 <view class="divide_line"></view> 161 <view class="divide_line"></view>
284 - <!-- <view class='item_body'>  
285 - <text class='text_666_28 float_left'>是否孤老</text>  
286 - <image class='arrow_wrap' src='/images/arrow_right.png'></image>  
287 - <text class='text_333_28 float_right'></text>  
288 - </view> --> 162 +
289 <template is="picker_cell_normal" data="{{...lonelyolderInfo}}" /> 163 <template is="picker_cell_normal" data="{{...lonelyolderInfo}}" />
290 <view class="divide_line"></view> 164 <view class="divide_line"></view>
291 <view class='item_body'> 165 <view class='item_body'>
@@ -300,43 +174,15 @@ @@ -300,43 +174,15 @@
300 </view> 174 </view>
301 175
302 176
303 -  
304 - <!-- 任职雇佣信息 -->  
305 - <!-- <view class='head_wrap ' style='margin-top:20rpx ' bindtap='span' id='3'>  
306 - <text class='head_text_wrap1 '>任职受雇信息</text>  
307 - <text class='head_text_wrap2' hidden='{{!isshow03}}'>(点击收起非必填选项)</text>  
308 - <text class='head_text_wrap2' hidden='{{isshow03}}'>(点击展开非必填选项)</text>  
309 - <view style='float:right ' hidden='{{!isshow03}}'>  
310 - <image class='head_image_wrap_up ' src='/images/arrow_up.png '></image>  
311 - </view>  
312 - <view hidden='{{isshow03}}' style='float:right '>  
313 - <image class='head_image_wrap_down ' src='/images/arrow_down.png '></image>  
314 - </view>  
315 - </view> -->  
316 -  
317 <view class='data_list ' hidden='true'> 177 <view class='data_list ' hidden='true'>
318 <view class='data_item '> 178 <view class='data_item '>
319 - <!-- <view class='item_body '>  
320 - <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left '>*</text>  
321 - <text class='text_black_28 float_left '>是否股东、投资者</text>  
322 - <image class='arrow_wrap ' src='/images/arrow_right.png '></image>  
323 - <text class='text_333_28 float_right '>是</text>  
324 - </view> --> 179 +
325 <template is="picker_cell_normal" data="{{...investInfo}}" /> 180 <template is="picker_cell_normal" data="{{...investInfo}}" />
326 <view class="divide_line"></view> 181 <view class="divide_line"></view>
327 - <!-- <view class='item_body '>  
328 - <text style='color:red;font-size: 28rpx;line-height: 80rpx;float:left '>*</text>  
329 - <text class='text_black_28 float_left '>是否特定行业</text>  
330 - <image class='arrow_wrap ' src='/images/arrow_right.png '></image>  
331 - <text class='text_333_28 float_right '></text>  
332 - </view> --> 182 +
333 <template is="picker_cell_normal" data="{{...specificIndustryInfo}}" /> 183 <template is="picker_cell_normal" data="{{...specificIndustryInfo}}" />
334 <view class="divide_line"></view> 184 <view class="divide_line"></view>
335 - <!-- <view class='item_body '>  
336 - <text class='text_666_28 float_left '>是否雇员</text>  
337 - <image class='arrow_wrap ' src='/images/arrow_right.png '></image>  
338 - <text class='text_333_28 float_right '></text>  
339 - </view> --> 185 +
340 <template is="picker_cell_normal" data="{{...employeeInfo}}" /> 186 <template is="picker_cell_normal" data="{{...employeeInfo}}" />
341 <view hidden='{{!isshow03}}'> 187 <view hidden='{{!isshow03}}'>
342 <view class="divide_line"></view> 188 <view class="divide_line"></view>
@@ -345,19 +191,11 @@ @@ -345,19 +191,11 @@
345 <input class='input_wrap float_right ' name='company_equity_total' type='digit' value='{{taxInfo.company_equity_total}}' placeholder-class='text_999_30' placeholder='请输入股本总额(保留两位小数)' maxlength='13' bindblur='companymoney'></input> 191 <input class='input_wrap float_right ' name='company_equity_total' type='digit' value='{{taxInfo.company_equity_total}}' placeholder-class='text_999_30' placeholder='请输入股本总额(保留两位小数)' maxlength='13' bindblur='companymoney'></input>
346 </view> 192 </view>
347 <view class="divide_line"></view> 193 <view class="divide_line"></view>
348 - <!-- <view class='item_body '>  
349 - <text class='text_666_28 float_left '>在职受雇日期</text>  
350 - <image class='arrow_wrap ' src='/images/arrow_right.png '></image>  
351 - <text class='text_333_28 float_right '></text>  
352 - </view> --> 194 +
353 <template is="picker_cell_normal" data="{{...startDate}}" /> 195 <template is="picker_cell_normal" data="{{...startDate}}" />
354 196
355 <view class="divide_line"></view> 197 <view class="divide_line"></view>
356 - <!-- <view class='item_body '>  
357 - <text class='text_666_28 float_left '>离职日期</text>  
358 - <image class='arrow_wrap ' src='/images/arrow_right.png '></image>  
359 - <text class='text_333_28 float_right '></text>  
360 - </view> --> 198 +
361 <template is="picker_cell_normal" data="{{...endDate}}" /> 199 <template is="picker_cell_normal" data="{{...endDate}}" />
362 200
363 <view class="divide_line"></view> 201 <view class="divide_line"></view>
@@ -366,11 +204,7 @@ @@ -366,11 +204,7 @@
366 <input class='input_wrap float_right ' name='employee_no' value='{{taxInfo.employee_no}}' placeholder-class='text_999_30' placeholder='请输入工号' maxlength='20'></input> 204 <input class='input_wrap float_right ' name='employee_no' value='{{taxInfo.employee_no}}' placeholder-class='text_999_30' placeholder='请输入工号' maxlength='20'></input>
367 </view> 205 </view>
368 <view class="divide_line"></view> 206 <view class="divide_line"></view>
369 - <!-- <view class='item_body '>  
370 - <text class='text_666_28 float_left '>是否天使投资个人</text>  
371 - <image class='arrow_wrap ' src='/images/arrow_right.png '></image>  
372 - <text class='text_333_28 float_right '></text>  
373 - </view> --> 207 +
374 <template is="picker_cell_normal" data="{{...investpersonalInfo}}" /> 208 <template is="picker_cell_normal" data="{{...investpersonalInfo}}" />
375 <view class="divide_line"></view> 209 <view class="divide_line"></view>
376 <view class='item_body'> 210 <view class='item_body'>
@@ -381,10 +215,6 @@ @@ -381,10 +215,6 @@
381 </view> 215 </view>
382 216
383 217
384 - <!-- <view style='width:100% '>  
385 - <text class='text_666_28 float_left '>备注</text>  
386 - <input class='extra_input' style='text-aligh: right' value='{{taxInfo.comment}}' name='comment' placeholder-class='text_999_28' placeholder='请输入备注'></input>  
387 - </view> -->  
388 </view> 218 </view>
389 </view> 219 </view>
390 220
@@ -398,4 +228,3 @@ @@ -398,4 +228,3 @@
398 </form> 228 </form>
399 </view> 229 </view>
400 230
401 -<!-- 普通选择器 -->  
@@ -5,10 +5,12 @@ @@ -5,10 +5,12 @@
5 } 5 }
6 6
7 .head_wrap { 7 .head_wrap {
8 - height: 90rpx;  
9 - background: #f7f9fd; 8 + height: 96rpx;
  9 + /* background: #f7f9fd; */
  10 + background: #fff;
10 padding-right: 20rpx; 11 padding-right: 20rpx;
11 padding-left: 32rpx; 12 padding-left: 32rpx;
  13 + /* line-height: 96rpx; */
12 } 14 }
13 15
14 .head_red_star { 16 .head_red_star {
注册登录 后发表评论