正在显示
5 个修改的文件
包含
399 行增加
和
65 行删除
@@ -15,18 +15,18 @@ | @@ -15,18 +15,18 @@ | ||
15 | <view class='divide_line' style='margin:0 50rpx'></view> | 15 | <view class='divide_line' style='margin:0 50rpx'></view> |
16 | <view style='padding:30rpx 40rpx;display:flex;flex-direction:column '> | 16 | <view style='padding:30rpx 40rpx;display:flex;flex-direction:column '> |
17 | <view style='height:40rpx'> | 17 | <view style='height:40rpx'> |
18 | - <text class='text_333_32 float_left' wx:if="true">子女教育</text> | 18 | + <text class='text_333_32 float_left' wx:if="true">住房</text> |
19 | <image class='arrow_img_wrap float_right' src="/images/arrow_right.png"></image> | 19 | <image class='arrow_img_wrap float_right' src="/images/arrow_right.png"></image> |
20 | <text class='text_999_28' style='margin-bottom:8rpx;float:right' bindtap='lookandadd' id='{{index}}'>查看</text> | 20 | <text class='text_999_28' style='margin-bottom:8rpx;float:right' bindtap='lookandadd' id='{{index}}'>查看</text> |
21 | </view> | 21 | </view> |
22 | <view style='width:100%;padding:20rpx 20rpx;display:flex;flex-direction:row '> | 22 | <view style='width:100%;padding:20rpx 20rpx;display:flex;flex-direction:row '> |
23 | <view class='float_left' style='flex:1'> | 23 | <view class='float_left' style='flex:1'> |
24 | <text class='text_999_24 '>扣除方式</text> | 24 | <text class='text_999_24 '>扣除方式</text> |
25 | - <text class='text_gray_28' style='margin-left:20rpx'>月度</text> | 25 | + <text class='text_gray_28' style='margin-left:20rpx'>年度</text> |
26 | </view> | 26 | </view> |
27 | <view class='float_right' style='flex:1'> | 27 | <view class='float_right' style='flex:1'> |
28 | <text class='text_999_24 '>可扣除金额</text> | 28 | <text class='text_999_24 '>可扣除金额</text> |
29 | - <text class='text_orange_28 ' style='margin-left:20rpx'>¥1000/月</text> | 29 | + <text class='text_orange_28 ' style='margin-left:20rpx'>¥12000/年</text> |
30 | </view> | 30 | </view> |
31 | </view> | 31 | </view> |
32 | 32 |
@@ -15,7 +15,7 @@ Page({ | @@ -15,7 +15,7 @@ Page({ | ||
15 | new_data: null, | 15 | new_data: null, |
16 | modal_images: ["/images/childedu_declare.png", "/images/continueedu_declare.png", "/images/support_older_declare.png", "/images/health_declare.png", "/images/house_declare.png"], | 16 | modal_images: ["/images/childedu_declare.png", "/images/continueedu_declare.png", "/images/support_older_declare.png", "/images/health_declare.png", "/images/house_declare.png"], |
17 | showModal: false, | 17 | showModal: false, |
18 | - datas02: [] | 18 | + datas: ["",""] |
19 | }, | 19 | }, |
20 | 20 | ||
21 | /** | 21 | /** |
@@ -43,26 +43,6 @@ Page({ | @@ -43,26 +43,6 @@ Page({ | ||
43 | var that = this | 43 | var that = this |
44 | var index = this.data.cur_index | 44 | var index = this.data.cur_index |
45 | console.log("onShow", index) | 45 | console.log("onShow", index) |
46 | - | ||
47 | - wx.getStorage({ | ||
48 | - key: 'selectitems', | ||
49 | - success: function(res) { | ||
50 | - console.log("selectitems", res.data) | ||
51 | - var new_title = res.data[index].message | ||
52 | - if (new_title == '住房') { | ||
53 | - new_title = res.data[index].extra_message | ||
54 | - } | ||
55 | - wx.setNavigationBarTitle({ | ||
56 | - title: new_title, | ||
57 | - }) | ||
58 | - that.setData({ | ||
59 | - title: new_title, | ||
60 | - imgpath: res.data[index].path, | ||
61 | - new_data: res.data[index].data, | ||
62 | - datas02: res.data | ||
63 | - }) | ||
64 | - }, | ||
65 | - }) | ||
66 | this.getTaxList() | 46 | this.getTaxList() |
67 | }, | 47 | }, |
68 | 48 | ||
@@ -82,6 +62,7 @@ Page({ | @@ -82,6 +62,7 @@ Page({ | ||
82 | 62 | ||
83 | goadd: function(e) { //添加 | 63 | goadd: function(e) { //添加 |
84 | var that = this | 64 | var that = this |
65 | + if(true){} | ||
85 | wx.navigateTo({ | 66 | wx.navigateTo({ |
86 | url: '../addextrainfo/addextrainfo?index=' + this.data.cur_index + '&title=' + that.data.title, | 67 | url: '../addextrainfo/addextrainfo?index=' + this.data.cur_index + '&title=' + that.data.title, |
87 | }) | 68 | }) |
@@ -135,7 +116,7 @@ Page({ | @@ -135,7 +116,7 @@ Page({ | ||
135 | if (data.items && data.items.length > 0) { | 116 | if (data.items && data.items.length > 0) { |
136 | var taxlist = [] | 117 | var taxlist = [] |
137 | for (var i = 0; i < data.items.length; i++) { | 118 | for (var i = 0; i < data.items.length; i++) { |
138 | - if (data.items[i].family_ties == 'family_ties') { | 119 | + if (data.items[i].family_ties == '子女') { |
139 | taxlist.push(data.items[i]) | 120 | taxlist.push(data.items[i]) |
140 | } | 121 | } |
141 | } | 122 | } |
1 | <!--pages/main/addtionalreduce/childreneducate/childreneducate.wxml--> | 1 | <!--pages/main/addtionalreduce/childreneducate/childreneducate.wxml--> |
2 | 2 | ||
3 | <view class='page'> | 3 | <view class='page'> |
4 | - <view style='display:flex;flex-direction:column' hidden="{{showModal}}"> | ||
5 | - <image class='openmodal_img' src="/images/openmodal_img.png"></image> | 4 | + <view style='display:flex;flex-direction:column'> |
5 | + <!-- <view style='height:180rpx'> | ||
6 | + <image style='width:100%;height:180rpx;position:absolute;' src='/images/extra_img_bg.png'></image> | ||
7 | + <view class='view_bg_wrap' style='margin-top: 48rpx;'> | ||
8 | + <view style='flex-grow: 1;text-align:center;display: flex;flex-direction: column;'> | ||
9 | + <text class='text_text_wrap'>累计使用额度</text> | ||
10 | + <text class='text_num_wrap'>1610899.90</text> | ||
11 | + </view> | ||
12 | + <view style='width:2rpx;height:74rpx;background:#ffffff;'></view> | ||
13 | + <view style='flex-grow: 1;text-align:center;display: flex;flex-direction: column;'> | ||
14 | + <text class='text_text_wrap'>本月可使用额度</text> | ||
15 | + <text class='text_num_wrap'>39100.10</text> | ||
16 | + </view> | ||
17 | + </view> | ||
18 | + </view> | ||
19 | + <view style='width:100%;height:20rpx;background:#f5f5f5'></view> --> | ||
20 | + | ||
21 | + <!-- <view style='padding-left:30rpx;background:#ffffff;padding-top:30rpx' bindtap='showdeclare'> | ||
22 | + <image class='icon_declare_wrap' src="/images/icon_declare.png"></image> | ||
23 | + <text style='padding-left:15rpx;' class='text_blue_28'>申报说明</text> | ||
24 | + </view> --> | ||
25 | + <image class='openmodal_img' src="/images/openmodal_img.png" bindtap='showdeclare'></image> | ||
6 | <view style='height:100rpx;margin:0 30rpx' bindtap='reducetype'> | 26 | <view style='height:100rpx;margin:0 30rpx' bindtap='reducetype'> |
7 | <text style='font-size:30rpx;color:#333;line-height:100rpx;font-family: PingFangSC-Semibold;float:left'>扣除方式</text> | 27 | <text style='font-size:30rpx;color:#333;line-height:100rpx;font-family: PingFangSC-Semibold;float:left'>扣除方式</text> |
8 | <image class='arrow_img float_right' style='margin-top:28rpx' src="/images/arrow_right.png"></image> | 28 | <image class='arrow_img float_right' style='margin-top:28rpx' src="/images/arrow_right.png"></image> |
9 | <text class='text_999_30 float_right' style='line-height:100rpx'>月度</text> | 29 | <text class='text_999_30 float_right' style='line-height:100rpx'>月度</text> |
10 | </view> | 30 | </view> |
11 | - <view wx:if='{{new_data&&new_data!=null}}' style='margin:30rpx;' class='card_rectangle_bg_column'> | ||
12 | - <!-- 子女教育 --> | ||
13 | - <view wx:if="{{cur_index==0}}" style='display:flex;flex-direction:column;padding: 30rpx 30rpx 0 30rpx;'> | 31 | + |
32 | + | ||
33 | + <!-- <view wx:if='{{new_data&&new_data!=null}}' style='margin:30rpx;' class='card_rectangle_bg_column'> --> | ||
34 | + | ||
35 | + <!-- 子女教育 --> | ||
36 | + <!-- <view wx:if="{{cur_index==0}}" style='display:flex;flex-direction:column;padding: 30rpx 30rpx 0 30rpx;'> | ||
14 | <view style='height:40rpx '> | 37 | <view style='height:40rpx '> |
15 | <text class='text_999_28 float_left'>配偶姓名</text> | 38 | <text class='text_999_28 float_left'>配偶姓名</text> |
16 | <text class='text_333_28 float_right'>{{new_data.lover_name}}</text> | 39 | <text class='text_333_28 float_right'>{{new_data.lover_name}}</text> |
@@ -72,18 +95,15 @@ | @@ -72,18 +95,15 @@ | ||
72 | <text class='text_999_28 float_left'>预计受教育日期止</text> | 95 | <text class='text_999_28 float_left'>预计受教育日期止</text> |
73 | <text class='text_333_28 float_right'>{{new_data.study_enddate}}</text> | 96 | <text class='text_333_28 float_right'>{{new_data.study_enddate}}</text> |
74 | </view> | 97 | </view> |
75 | - <!-- <view style='height:40rpx'> | ||
76 | - <text class='text_999_28 float_left'>扣除金额</text> | ||
77 | - <text class='text_333_28 float_right'>{{new_data.reduce_money}}</text> | ||
78 | - </view> --> | 98 | + |
79 | <view style='height:40rpx'> | 99 | <view style='height:40rpx'> |
80 | <text class='text_999_28 float_left'>扣除比例</text> | 100 | <text class='text_999_28 float_left'>扣除比例</text> |
81 | <text class='text_333_28 float_right'>{{new_data.reduce_ratio}}</text> | 101 | <text class='text_333_28 float_right'>{{new_data.reduce_ratio}}</text> |
82 | </view> | 102 | </view> |
83 | - </view> | 103 | + </view> --> |
84 | 104 | ||
85 | - <!-- 继续教育 --> | ||
86 | - <view wx:if="{{cur_index==1}}" style='display:flex;flex-direction:column;padding:30rpx 30rpx 0 30rpx;'> | 105 | + <!-- 继续教育 --> |
106 | + <!-- <view wx:if="{{cur_index==1}}" style='display:flex;flex-direction:column;padding:30rpx 30rpx 0 30rpx;'> | ||
87 | <view style='height:40rpx'> | 107 | <view style='height:40rpx'> |
88 | <text class='text_999_28 float_left'>教育类型</text> | 108 | <text class='text_999_28 float_left'>教育类型</text> |
89 | <text class='text_333_28 float_right'>{{new_data.edu_type}}</text> | 109 | <text class='text_333_28 float_right'>{{new_data.edu_type}}</text> |
@@ -113,10 +133,10 @@ | @@ -113,10 +133,10 @@ | ||
113 | <text class='text_999_28 float_left'>发证机关</text> | 133 | <text class='text_999_28 float_left'>发证机关</text> |
114 | <text class='text_333_28 float_right'>{{new_data.license_unit}}</text> | 134 | <text class='text_333_28 float_right'>{{new_data.license_unit}}</text> |
115 | </view> | 135 | </view> |
116 | - </view> | 136 | + </view> --> |
117 | 137 | ||
118 | - <!-- 赡养老人 --> | ||
119 | - <view wx:if="{{cur_index==2}}" style='display:flex;flex-direction:column;padding:30rpx 30rpx 0 30rpx;'> | 138 | + <!-- 赡养老人 --> |
139 | + <!-- <view wx:if="{{cur_index==2}}" style='display:flex;flex-direction:column;padding:30rpx 30rpx 0 30rpx;'> | ||
120 | <view style='height:40rpx'> | 140 | <view style='height:40rpx'> |
121 | <text class='text_999_28 float_left'>赡养类型</text> | 141 | <text class='text_999_28 float_left'>赡养类型</text> |
122 | <text class='text_333_28 float_right'>{{new_data.support_type}}</text> | 142 | <text class='text_333_28 float_right'>{{new_data.support_type}}</text> |
@@ -154,10 +174,10 @@ | @@ -154,10 +174,10 @@ | ||
154 | <text class='text_999_28 float_left'>扣除金额</text> | 174 | <text class='text_999_28 float_left'>扣除金额</text> |
155 | <text class='text_333_28 float_right'>{{new_data.reduce_money}}元</text> | 175 | <text class='text_333_28 float_right'>{{new_data.reduce_money}}元</text> |
156 | </view> | 176 | </view> |
157 | - </view> | 177 | + </view> --> |
158 | 178 | ||
159 | - <!-- 大病医疗 --> | ||
160 | - <view wx:if="{{cur_index==3}}" style='display:flex;flex-direction:column;padding:30rpx 30rpx 0 30rpx;'> | 179 | + <!-- 大病医疗 --> |
180 | + <!-- <view wx:if="{{cur_index==3}}" style='display:flex;flex-direction:column;padding:30rpx 30rpx 0 30rpx;'> | ||
161 | <view style='height:40rpx'> | 181 | <view style='height:40rpx'> |
162 | <text class='text_999_28 float_left'>姓名</text> | 182 | <text class='text_999_28 float_left'>姓名</text> |
163 | <text class='text_333_28 float_right'>{{new_data.name}}</text> | 183 | <text class='text_333_28 float_right'>{{new_data.name}}</text> |
@@ -182,10 +202,10 @@ | @@ -182,10 +202,10 @@ | ||
182 | <text class='text_999_28 float_left'>个人负担金额</text> | 202 | <text class='text_999_28 float_left'>个人负担金额</text> |
183 | <text class='text_333_28 float_right'>{{new_data.personal_money}}元</text> | 203 | <text class='text_333_28 float_right'>{{new_data.personal_money}}元</text> |
184 | </view> | 204 | </view> |
185 | - </view> | 205 | + </view> --> |
186 | 206 | ||
187 | - <!-- 住房 --> | ||
188 | - <view wx:if="{{title=='住房贷款利息'||title=='住房租金'}}" style='display:flex;flex-direction:column;padding:30rpx 30rpx 0 30rpx;'> | 207 | + <!-- 住房 --> |
208 | + <!-- <view wx:if="{{title=='住房贷款利息'||title=='住房租金'}}" style='display:flex;flex-direction:column;padding:30rpx 30rpx 0 30rpx;'> | ||
189 | <view style='height:40rpx'> | 209 | <view style='height:40rpx'> |
190 | <text class='text_999_28 float_left'>配偶姓名</text> | 210 | <text class='text_999_28 float_left'>配偶姓名</text> |
191 | <text class='text_333_28 float_right'>{{new_data.lover_name}}</text> | 211 | <text class='text_333_28 float_right'>{{new_data.lover_name}}</text> |
@@ -284,24 +304,261 @@ | @@ -284,24 +304,261 @@ | ||
284 | <text class='text_333_28 float_right'>{{new_data.reduce_money}}元</text> | 304 | <text class='text_333_28 float_right'>{{new_data.reduce_money}}元</text> |
285 | </view> | 305 | </view> |
286 | 306 | ||
287 | - </view> | ||
288 | - <!-- <view style='height:40rpx;padding:0 30rpx 30rpx 30rpx;'> | ||
289 | - <text class='text_999_28 float_left'>扣除时间</text> | ||
290 | - <text class='text_333_28 float_right'>{{new_data.reduce_date}}</text> | ||
291 | </view> --> | 307 | </view> --> |
292 | 308 | ||
293 | - <!-- <view class='divide_line_f5f5f5' style='margin-top:20rpx'></view> | ||
294 | - <view class='text_blue_28' style='line-height:80rpx' bindtap='lookimg'>查看材料</view> --> | 309 | + <!-- </view> --> |
310 | + | ||
311 | + <view wx:if="true"> | ||
312 | + <view wx:for="{{datas}}"> | ||
313 | + <view style='margin:30rpx;padding-left: 30rpx' class='card_rectangle_bg_column'> | ||
314 | + <view style='height:110rpx'> | ||
315 | + <text class='text_gray_36 float_left' style='line-height:110rpx'>张飞</text> | ||
316 | + <view class='declare_style float_right'> 申报中</view> | ||
317 | + </view> | ||
318 | + <view style='padding-right: 30rpx'> | ||
319 | + <view class='divide_line_f5f5f5'></view> | ||
320 | + <view style='height:70rpx'> | ||
321 | + <text class='text_999_28 ' style='line-height:70rpx'>子女姓名:</text> | ||
322 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>张飞</text> | ||
323 | + </view> | ||
324 | + <view style='height:70rpx'> | ||
325 | + <text class='text_999_28 ' style='line-height:70rpx'>分配比例:</text> | ||
326 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
327 | + </view> | ||
328 | + <view style='height:70rpx'> | ||
329 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除方式:</text> | ||
330 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
331 | + </view> | ||
332 | + <view style='height:70rpx'> | ||
333 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除金额:</text> | ||
334 | + <text class='text_orange_28 ' style='line-height:70rpx;margin-left:20rpx'>¥12345元</text> | ||
335 | + </view> | ||
336 | + <view class='divide_line_f5f5f5'></view> | ||
337 | + <text class='text_blue_28 float_right' style='line-height:90rpx'>查看</text> | ||
338 | + </view> | ||
339 | + </view> | ||
340 | + </view> | ||
341 | + </view> | ||
342 | + | ||
343 | + <view> | ||
344 | + <!-- 非学历教育 --> | ||
345 | + <view style='margin:30rpx;padding-left: 30rpx' class='card_rectangle_bg_column'> | ||
346 | + <view style='height:110rpx'> | ||
347 | + <text class='text_gray_36' style='line-height:110rpx'>非学历教育</text> | ||
348 | + <view class='declare_style float_right'> 申报中</view> | ||
349 | + </view> | ||
350 | + <view style='padding-right:30rpx'> | ||
351 | + <view class='divide_line_f5f5f5'></view> | ||
352 | + <view style='height:70rpx'> | ||
353 | + <text class='text_999_28 ' style='line-height:70rpx'>教育类别:</text> | ||
354 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
355 | + </view> | ||
356 | + <view style='height:70rpx'> | ||
357 | + <text class='text_999_28 ' style='line-height:70rpx'>教育类型:</text> | ||
358 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
359 | + </view> | ||
360 | + <view style='height:70rpx'> | ||
361 | + <text class='text_999_28 ' style='line-height:70rpx'>证书名称:</text> | ||
362 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
363 | + </view> | ||
364 | + <view style='height:70rpx'> | ||
365 | + <text class='text_999_28 ' style='line-height:70rpx'>教育类型:</text> | ||
366 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
367 | + </view> | ||
368 | + <view style='height:70rpx'> | ||
369 | + <text class='text_999_28 ' style='line-height:70rpx'>发证机关:</text> | ||
370 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
371 | + </view> | ||
372 | + <view style='height:70rpx'> | ||
373 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除方式:</text> | ||
374 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
375 | + </view> | ||
376 | + <view style='height:70rpx'> | ||
377 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除金额:</text> | ||
378 | + <text class='text_orange_28 ' style='line-height:70rpx;margin-left:20rpx'>¥12345元</text> | ||
379 | + </view> | ||
380 | + </view> | ||
381 | + </view> | ||
382 | + <!-- 学历教育 --> | ||
383 | + <view style='margin:30rpx;padding-left: 30rpx' class='card_rectangle_bg_column'> | ||
384 | + <view style='height:110rpx'> | ||
385 | + <text class='text_gray_36' style='line-height:110rpx'>学历教育</text> | ||
386 | + <view class='declare_style float_right'> 待申报</view> | ||
387 | + </view> | ||
388 | + <view style='padding-right:right'> | ||
389 | + <view class='divide_line_f5f5f5'></view> | ||
390 | + <view style='height:70rpx'> | ||
391 | + <text class='text_999_28 ' style='line-height:70rpx'>教育类别:</text> | ||
392 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
393 | + </view> | ||
394 | + <view style='height:70rpx'> | ||
395 | + <text class='text_999_28 ' style='line-height:70rpx'>受教育阶段:</text> | ||
396 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
397 | + </view> | ||
398 | + <view style='height:70rpx'> | ||
399 | + <text class='text_999_28 ' style='line-height:70rpx'>受教育日期起:</text> | ||
400 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
401 | + </view> | ||
402 | + <view style='height:70rpx'> | ||
403 | + <text class='text_999_28 ' style='line-height:70rpx'>受教育日期止:</text> | ||
404 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
405 | + </view> | ||
406 | + <view style='height:70rpx'> | ||
407 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除方式:</text> | ||
408 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
409 | + </view> | ||
410 | + <view style='height:70rpx'> | ||
411 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除金额:</text> | ||
412 | + <text class='text_orange_28 ' style='line-height:70rpx;margin-left:20rpx'>¥12345元</text> | ||
413 | + </view> | ||
414 | + </view> | ||
415 | + | ||
416 | + </view> | ||
417 | + </view> | ||
418 | + | ||
419 | + <view> | ||
420 | + <view style='margin:30rpx;padding-left:30rpx' class='card_rectangle_bg_column'> | ||
421 | + <view style='height:110rpx'> | ||
422 | + <text class='text_gray_36 float_left' style='line-height:110rpx'>被赡养人</text> | ||
423 | + <view class='declare_style float_right'> 申报中</view> | ||
424 | + </view> | ||
425 | + <view style='padding-right:30rpx'> | ||
426 | + <view class='divide_line_f5f5f5'></view> | ||
427 | + <view style='height:70rpx'> | ||
428 | + <text class='text_999_28 ' style='line-height:70rpx'>被赡养人姓名:</text> | ||
429 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
430 | + </view> | ||
431 | + <view style='height:70rpx'> | ||
432 | + <text class='text_999_28 ' style='line-height:70rpx'>分摊比例:</text> | ||
433 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
434 | + </view> | ||
435 | + <view style='height:70rpx'> | ||
436 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除方式:</text> | ||
437 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
438 | + </view> | ||
439 | + <view style='height:70rpx'> | ||
440 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除金额:</text> | ||
441 | + <text class='text_orange_28 ' style='line-height:70rpx;margin-left:20rpx'>¥12345元</text> | ||
442 | + </view> | ||
443 | + <view class='divide_line_f5f5f5'></view> | ||
444 | + <text class='text_blue_28 float_right' style='line-height:90rpx'>查看</text> | ||
445 | + </view> | ||
446 | + | ||
447 | + </view> | ||
295 | </view> | 448 | </view> |
296 | 449 | ||
297 | - <view style='margin:40rpx 30rpx;line-height:84rpx;text-align:center;font-size:34rpx;color:#fff;background:#357AEB;' bindtap='goadd'> | 450 | + <view> |
451 | + <view class='divide_line_f5f5f5'></view> | ||
452 | + <view style='height:100rpx;margin:0 30rpx' bindtap='reducetype'> | ||
453 | + <text style='font-size:30rpx;color:#333;line-height:100rpx;font-family: PingFangSC-Semibold;float:left'>个人负担总金额</text> | ||
454 | + <text class='text_orange_28 float_right' style='line-height:100rpx'>¥10</text> | ||
455 | + </view> | ||
456 | + <view class='divide_line_f5f5f5'></view> | ||
457 | + <view style='height:100rpx;margin:0 30rpx' bindtap='reducetype'> | ||
458 | + <text style='font-size:30rpx;color:#333;line-height:100rpx;font-family: PingFangSC-Semibold;float:left'>可扣除金额</text> | ||
459 | + <text class='text_orange_28 float_right' style='line-height:100rpx'>¥0</text> | ||
460 | + </view> | ||
461 | + <view class='divide_line_f5f5f5'></view> | ||
462 | + <view style='margin:30rpx;padding-left: 30rpx' class='card_rectangle_bg_column'> | ||
463 | + <view style='height:110rpx'> | ||
464 | + <text class='text_gray_36' style='line-height:110rpx'>支出明细</text> | ||
465 | + <view class='declare_style float_right'> 申报中</view> | ||
466 | + </view> | ||
467 | + <view style='padding-right:30rpx'> | ||
468 | + <view class='divide_line_f5f5f5'></view> | ||
469 | + <view style='height:70rpx'> | ||
470 | + <text class='text_999_28 ' style='line-height:70rpx'>姓名:</text> | ||
471 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
472 | + </view> | ||
473 | + <view style='height:70rpx'> | ||
474 | + <text class='text_999_28 ' style='line-height:70rpx'>身份证件类型:</text> | ||
475 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
476 | + </view> | ||
477 | + <view style='height:70rpx'> | ||
478 | + <text class='text_999_28 ' style='line-height:70rpx'>身份证件号码:</text> | ||
479 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>123</text> | ||
480 | + </view> | ||
481 | + <view style='height:70rpx'> | ||
482 | + <text class='text_999_28 ' style='line-height:70rpx'>与纳税人关系:</text> | ||
483 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
484 | + </view> | ||
485 | + <view style='height:70rpx'> | ||
486 | + <text class='text_999_28 ' style='line-height:70rpx'>医疗支出总金额:</text> | ||
487 | + <text class='text_orange_28 ' style='line-height:70rpx;margin-left:20rpx'>¥12345元</text> | ||
488 | + </view> | ||
489 | + <view style='height:70rpx'> | ||
490 | + <text class='text_999_28 ' style='line-height:70rpx'>个人负担金额:</text> | ||
491 | + <text class='text_orange_28 ' style='line-height:70rpx;margin-left:20rpx'>¥2345元</text> | ||
492 | + </view> | ||
493 | + </view> | ||
494 | + </view> | ||
495 | + </view> | ||
496 | + | ||
497 | + <view> | ||
498 | + <view style='margin:30rpx;padding-left: 30rpx' class='card_rectangle_bg_column'> | ||
499 | + <view style='height:110rpx'> | ||
500 | + <text class='text_gray_36 float_left' style='line-height:110rpx'>住房</text> | ||
501 | + <view class='declare_style float_right'> 申报中</view> | ||
502 | + </view> | ||
503 | + <view style='padding-right: 30rpx'> | ||
504 | + <view class='divide_line_f5f5f5'></view> | ||
505 | + <view style='height:70rpx'> | ||
506 | + <text class='text_999_28 ' style='line-height:70rpx'>租赁房屋坐落地址:</text> | ||
507 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>北京市 市辖区 朝阳区</text> | ||
508 | + </view> | ||
509 | + <view style='height:70rpx'> | ||
510 | + <text class='text_999_28 ' style='line-height:70rpx'></text> | ||
511 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>瑞创国际SA大厦1101</text> | ||
512 | + </view> | ||
513 | + <view style='height:70rpx'> | ||
514 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除方式:</text> | ||
515 | + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>1234</text> | ||
516 | + </view> | ||
517 | + <view style='height:70rpx'> | ||
518 | + <text class='text_999_28 ' style='line-height:70rpx'>扣除金额:</text> | ||
519 | + <text class='text_orange_28 ' style='line-height:70rpx;margin-left:20rpx'>¥12345元</text> | ||
520 | + </view> | ||
521 | + <view class='divide_line_f5f5f5'></view> | ||
522 | + <text class='text_blue_28 float_right' style='line-height:90rpx'>查看</text> | ||
523 | + </view> | ||
524 | + </view> | ||
525 | + </view> | ||
526 | + | ||
527 | + <view class='divide_line_f5f5f5'></view> | ||
528 | + <view style='margin:30rpx;line-height:84rpx;text-align:center;font-size:34rpx;color:#fff;background:#357AEB;' bindtap='goadd'> | ||
298 | 添加 | 529 | 添加 |
299 | </view> | 530 | </view> |
531 | + <view style='margin-left:30rpx'> | ||
532 | + <text class='text_999_28'>您还没有添加继续共同赡养人,</text> | ||
533 | + <text class='text_blue_28' bindtap='goadd'>请添加</text> | ||
534 | + </view> | ||
300 | </view> | 535 | </view> |
301 | </view> | 536 | </view> |
302 | 537 | ||
303 | <view class="mask" catchtouchmove="preventTouchMove" hidden="{{!showModal}}"></view> | 538 | <view class="mask" catchtouchmove="preventTouchMove" hidden="{{!showModal}}"></view> |
304 | <view style='top:250rpx;position:absolute;z-index:10;width:100%' hidden="{{!showModal}}"> | 539 | <view style='top:250rpx;position:absolute;z-index:10;width:100%' hidden="{{!showModal}}"> |
305 | - <image class='modal_img' src="{{modal_images[cur_index]}}"></image> | ||
306 | - <text style='position:absolute;font-size:20px;color:#fff;float:right;top:0;right:100rpx' bindtap='closeModal'>x</text> | ||
307 | -</view> | ||
540 | + <image class='modal_img' src="{{modal_images[cur_index]}}" bindtap='closeModal'></image> | ||
541 | + <!-- <text style='position:absolute;font-size:20px;color:#fff;float:right;top:0;right:100rpx' bindtap='closeModal'>x</text> --> | ||
542 | +</view> | ||
543 | +<!-- <view class='modal_lg' style='' hidden="{{!showModal}}"> | ||
544 | + <text class='text_modal_title' >请选择子女进行申报</text> | ||
545 | + <view class='divide_line_f5f5f5'></view> | ||
546 | + <view style='width:100%;display:flex;flex-direction:column;align-items:center;'> | ||
547 | + <block wx:for="{{datas}}" wx:for-index="idx"> | ||
548 | + <view wx:if="{{idx!=1}}"> | ||
549 | + <text class='text_item_black float_left'>月度</text> | ||
550 | + </view> | ||
551 | + <view wx:else> | ||
552 | + <text class='text_item_blue float_left'>年度</text> | ||
553 | + <image class='icon_choosed' src="/images/icon_chat_choosed.png"></image> | ||
554 | + </view> | ||
555 | + <view class='divide_line_f5f5f5'></view> | ||
556 | + </block> | ||
557 | + </view> | ||
558 | + <view class='divide_line_f5f5f5'></view> | ||
559 | + <view style='width:100%;display: flex;'> | ||
560 | + <text class='text_cancel' bindtap='cancelhandle'>取消</text> | ||
561 | + <view style='width:1px;background:#F5F5F5;margin:20rpx 0'></view> | ||
562 | + <text class='text_confirm' bindtap='confirmhandle'>确定</text> | ||
563 | + </view> | ||
564 | +</view> --> |
@@ -31,10 +31,9 @@ | @@ -31,10 +31,9 @@ | ||
31 | height: 40rpx; | 31 | height: 40rpx; |
32 | align-items: center; | 32 | align-items: center; |
33 | float: right; | 33 | float: right; |
34 | - margin-bottom: 8rpx | 34 | + margin-bottom: 8rpx; |
35 | } | 35 | } |
36 | 36 | ||
37 | - | ||
38 | .icon_declare_wrap { | 37 | .icon_declare_wrap { |
39 | width: 23rpx; | 38 | width: 23rpx; |
40 | height: 26rpx; | 39 | height: 26rpx; |
@@ -46,6 +45,12 @@ | @@ -46,6 +45,12 @@ | ||
46 | font-family: PingFangSC-Semibold; | 45 | font-family: PingFangSC-Semibold; |
47 | } | 46 | } |
48 | 47 | ||
48 | +.text_gray_36 { | ||
49 | + font-size: 36rpx; | ||
50 | + color: #080c1a; | ||
51 | + font-family: PingFangSC-Semibold; | ||
52 | +} | ||
53 | + | ||
49 | .text_999_28 { | 54 | .text_999_28 { |
50 | font-family: PingFangSC-Regular; | 55 | font-family: PingFangSC-Regular; |
51 | font-size: 28rpx; | 56 | font-size: 28rpx; |
@@ -67,11 +72,17 @@ | @@ -67,11 +72,17 @@ | ||
67 | text-align: right; | 72 | text-align: right; |
68 | } | 73 | } |
69 | 74 | ||
75 | +.text_orange_28 { | ||
76 | + font-family: PingFangSC-Regular; | ||
77 | + font-size: 28rpx; | ||
78 | + color: #ff9f00; | ||
79 | + text-align: right; | ||
80 | +} | ||
81 | + | ||
70 | .text_blue_28 { | 82 | .text_blue_28 { |
71 | font-family: PingFangSC-Regular; | 83 | font-family: PingFangSC-Regular; |
72 | font-size: 28rpx; | 84 | font-size: 28rpx; |
73 | color: #3795ff; | 85 | color: #3795ff; |
74 | - text-align: center; | ||
75 | } | 86 | } |
76 | 87 | ||
77 | .rectangle_dashed_bg { | 88 | .rectangle_dashed_bg { |
@@ -84,6 +95,7 @@ | @@ -84,6 +95,7 @@ | ||
84 | } | 95 | } |
85 | 96 | ||
86 | /* 遮罩层 */ | 97 | /* 遮罩层 */ |
98 | + | ||
87 | .mask { | 99 | .mask { |
88 | width: 100%; | 100 | width: 100%; |
89 | height: 100%; | 101 | height: 100%; |
@@ -95,17 +107,101 @@ | @@ -95,17 +107,101 @@ | ||
95 | z-index: 10; | 107 | z-index: 10; |
96 | } | 108 | } |
97 | 109 | ||
98 | -.modal_img{ | 110 | +.modal_img { |
99 | width: 325px; | 111 | width: 325px; |
100 | height: 390px; | 112 | height: 390px; |
101 | - margin:0 auto; | ||
102 | -display:block; | 113 | + margin: 0 auto; |
114 | + display: block; | ||
115 | +} | ||
103 | 116 | ||
117 | +.modal_lg { | ||
118 | + width: 72%; | ||
119 | + position: fixed; | ||
120 | + left: 0; | ||
121 | + right: 0; | ||
122 | + margin: 0 auto; | ||
123 | + background-color: #fff; | ||
124 | + border-radius: 7px; | ||
125 | + display: flex; | ||
126 | + flex-direction: column; | ||
127 | + align-items: center; | ||
128 | + top: 260rpx; | ||
129 | + z-index: 10; | ||
104 | } | 130 | } |
105 | 131 | ||
106 | -.openmodal_img{ | 132 | +.openmodal_img { |
107 | width: 92%; | 133 | width: 92%; |
108 | height: 132rpx; | 134 | height: 132rpx; |
109 | margin: 30rpx; | 135 | margin: 30rpx; |
110 | - align-items: center | ||
111 | -} | ||
136 | + align-items: center; | ||
137 | +} | ||
138 | + | ||
139 | +.text_modal_title { | ||
140 | + font-size: 32rpx; | ||
141 | + color: #6c7596; | ||
142 | + font-family: PingFangSC-Semibold; | ||
143 | + text-align: center; | ||
144 | + line-height: 45rpx; | ||
145 | + margin: 40rpx 0; | ||
146 | +} | ||
147 | + | ||
148 | +.text_cancel { | ||
149 | + font-family: PingFangSC-Regular; | ||
150 | + font-size: 36rpx; | ||
151 | + color: #999; | ||
152 | + letter-spacing: 0; | ||
153 | + text-align: center; | ||
154 | + line-height: 100rpx; | ||
155 | + flex: 1; | ||
156 | +} | ||
157 | + | ||
158 | +.text_confirm { | ||
159 | + font-family: PingFangSC-Regular; | ||
160 | + font-size: 36rpx; | ||
161 | + color: #108ee9; | ||
162 | + letter-spacing: 0; | ||
163 | + text-align: center; | ||
164 | + line-height: 100rpx; | ||
165 | + flex: 1; | ||
166 | +} | ||
167 | + | ||
168 | +.icon_choosed { | ||
169 | + width: 24rpx; | ||
170 | + height: 26rpx; | ||
171 | + margin-top: 30rpx; | ||
172 | + margin-right: 20rpx; | ||
173 | + float: right; | ||
174 | +} | ||
175 | + | ||
176 | +.text_item_blue { | ||
177 | + font-family: PingFangSC-Regular; | ||
178 | + font-size: 16px; | ||
179 | + color: #108ee9; | ||
180 | + letter-spacing: 0; | ||
181 | + line-height: 18px; | ||
182 | + padding: 30rpx; | ||
183 | +} | ||
184 | + | ||
185 | +.text_item_black { | ||
186 | + font-family: PingFangSC-Regular; | ||
187 | + font-size: 16px; | ||
188 | + color: #333; | ||
189 | + letter-spacing: 0; | ||
190 | + line-height: 18px; | ||
191 | + padding: 30rpx; | ||
192 | +} | ||
193 | + | ||
194 | +.declare_style { | ||
195 | + width: 144rpx; | ||
196 | + height: 48rpx; | ||
197 | + background: #f5a623; | ||
198 | + border-radius: 20px 0px 0px 20px; | ||
199 | + font-family: PingFangSC-Regular; | ||
200 | + font-size: 13px; | ||
201 | + color: #fff; | ||
202 | + text-align: center; | ||
203 | + align-items: center; | ||
204 | + justify-content: center; | ||
205 | + line-height: 48rpx; | ||
206 | + margin-top: 30rpx; | ||
207 | +} |
请
注册
或
登录
后发表评论