正在显示
16 个修改的文件
包含
597 行增加
和
7 行删除
| ... | ... | @@ -10,6 +10,8 @@ |
| 10 | 10 | "pages/main/addtionalreduce/home", |
| 11 | 11 | "pages/main/addtionalreduce/godeclare/godeclare", |
| 12 | 12 | "pages/main/addtionalreduce/godetail/godetail", |
| 13 | + "pages/main/addtionalreduce/lookandupdate/lookandupdate", | |
| 14 | + "pages/main/addtionalreduce/addextrainfo/addextrainfo", | |
| 13 | 15 | |
| 14 | 16 | "pages/main/advancepayment/home", |
| 15 | 17 | ... | ... |
| ... | ... | @@ -60,6 +60,12 @@ |
| 60 | 60 | text-align: right; |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | +.text_999_30 { | |
| 64 | + font-family: PingFangSC-Regular; | |
| 65 | + font-size: 30rpx; | |
| 66 | + color: #999; | |
| 67 | +} | |
| 68 | + | |
| 63 | 69 | .text_blue_28 { |
| 64 | 70 | font-family: PingFangSC-Regular; |
| 65 | 71 | font-size: 28rpx; |
| ... | ... | @@ -81,6 +87,12 @@ |
| 81 | 87 | line-height: 80rpx; |
| 82 | 88 | } |
| 83 | 89 | |
| 90 | +.text_black_30 { | |
| 91 | + font-family: PingFangSC-Regular; | |
| 92 | + font-size: 30rpx; | |
| 93 | + color: #000; | |
| 94 | +} | |
| 95 | + | |
| 84 | 96 | .text_black_32 { |
| 85 | 97 | font-size: 32rpx; |
| 86 | 98 | color: #000; | ... | ... |
images/extra_img_bg.png
0 → 100644
92.2 KB
images/upload_img.png
0 → 100644
28.1 KB
| 1 | +// pages/main/addtionalreduce/addextrainfo/addextrainfo.js | |
| 2 | +Page({ | |
| 3 | + | |
| 4 | + /** | |
| 5 | + * Page initial data | |
| 6 | + */ | |
| 7 | + data: { | |
| 8 | + lable:0, | |
| 9 | + title_arr: ["添加子女", "添加继续教育", "添加老人", "添加大病医疗", "添加住房贷款利息"], | |
| 10 | + extrainfo_arr: ["请上传子女出生证明、学籍信息凭证、学费凭证、本人结婚证和分摊协议", "请上传学历学籍凭证", "请上传出生证明或关系证明、独生子女证、分摊协议、其他法定赡养人赡养证明", "请上传诊断书和医疗费用收据", "请上传首套房证明、还款证明、不动产登记证、结婚证和夫妻约定抵扣协议"], | |
| 11 | + cur_index:0 | |
| 12 | + }, | |
| 13 | + | |
| 14 | + /** | |
| 15 | + * Lifecycle function--Called when page load | |
| 16 | + */ | |
| 17 | + onLoad: function (options) { | |
| 18 | + console.log("options", options); | |
| 19 | + this.setData({ | |
| 20 | + cur_index: options.index | |
| 21 | + }) | |
| 22 | + wx.setNavigationBarTitle({ | |
| 23 | + title: this.data.title_arr[this.data.cur_index] | |
| 24 | + }) | |
| 25 | + }, | |
| 26 | + | |
| 27 | + /** | |
| 28 | + * Lifecycle function--Called when page is initially rendered | |
| 29 | + */ | |
| 30 | + onReady: function () { | |
| 31 | + | |
| 32 | + }, | |
| 33 | + | |
| 34 | + /** | |
| 35 | + * Lifecycle function--Called when page show | |
| 36 | + */ | |
| 37 | + onShow: function () { | |
| 38 | + | |
| 39 | + }, | |
| 40 | + | |
| 41 | + /** | |
| 42 | + * Lifecycle function--Called when page hide | |
| 43 | + */ | |
| 44 | + onHide: function () { | |
| 45 | + | |
| 46 | + }, | |
| 47 | + | |
| 48 | + /** | |
| 49 | + * Lifecycle function--Called when page unload | |
| 50 | + */ | |
| 51 | + onUnload: function () { | |
| 52 | + | |
| 53 | + }, | |
| 54 | + | |
| 55 | + /** | |
| 56 | + * Page event handler function--Called when user drop down | |
| 57 | + */ | |
| 58 | + onPullDownRefresh: function () { | |
| 59 | + | |
| 60 | + }, | |
| 61 | + | |
| 62 | + /** | |
| 63 | + * Called when page reach bottom | |
| 64 | + */ | |
| 65 | + onReachBottom: function () { | |
| 66 | + | |
| 67 | + }, | |
| 68 | + | |
| 69 | + /** | |
| 70 | + * Called when user click on the top right corner to share | |
| 71 | + */ | |
| 72 | + onShareAppMessage: function () { | |
| 73 | + | |
| 74 | + } | |
| 75 | +}) | |
| \ No newline at end of file | ... | ... |
| 1 | +{} | |
| \ No newline at end of file | ... | ... |
| 1 | +<!--pages/main/addtionalreduce/addextrainfo/addextrainfo.wxml--> | |
| 2 | +<scroll-view class='page'> | |
| 3 | + <view style='padding:0 30rpx'> | |
| 4 | + <!-- 添加子女 --> | |
| 5 | + <view wx:if="{{cur_index==0}}"> | |
| 6 | + <view style='height:90rpx'> | |
| 7 | + <text class='text_black_30 float_left'>子女姓名</text> | |
| 8 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入子女姓名'></input> | |
| 9 | + </view> | |
| 10 | + <view class='divide_line_f5f5f5'></view> | |
| 11 | + <view style='height:90rpx'> | |
| 12 | + <text class='text_black_30 float_left'>子女母亲姓名</text> | |
| 13 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入子女母亲姓名'></input> | |
| 14 | + </view> | |
| 15 | + <view class='divide_line_f5f5f5'></view> | |
| 16 | + <view style='height:90rpx'> | |
| 17 | + <text class='text_black_30 float_left'>子女身份证号</text> | |
| 18 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入子女身份证号'></input> | |
| 19 | + </view> | |
| 20 | + <view class='divide_line_f5f5f5'></view> | |
| 21 | + <view style='height:90rpx'> | |
| 22 | + <text class='text_black_30 float_left'>子女学籍号</text> | |
| 23 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入子女学籍号'></input> | |
| 24 | + </view> | |
| 25 | + <view class='divide_line_f5f5f5'></view> | |
| 26 | + <view style='height:90rpx'> | |
| 27 | + <text class='text_black_30 float_left'>教育阶段</text> | |
| 28 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 29 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择教育阶段</text> | |
| 30 | + </view> | |
| 31 | + <view class='divide_line_f5f5f5'></view> | |
| 32 | + <view style='height:90rpx'> | |
| 33 | + <text class='text_black_30 float_left'>扣除金额</text> | |
| 34 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入扣除金额'></input> | |
| 35 | + </view> | |
| 36 | + <view class='divide_line_f5f5f5'></view> | |
| 37 | + <view style='height:90rpx'> | |
| 38 | + <text class='text_black_30 float_left'>扣除比例</text> | |
| 39 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入扣除比例'></input> | |
| 40 | + </view> | |
| 41 | + <view class='divide_line_f5f5f5'></view> | |
| 42 | + <view style='height:90rpx'> | |
| 43 | + <text class='text_black_30 float_left'>扣除时间</text> | |
| 44 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 45 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择扣除时间</text> | |
| 46 | + </view> | |
| 47 | + </view> | |
| 48 | + <!-- 继续教育 --> | |
| 49 | + <view wx:if="{{cur_index==1}}"> | |
| 50 | + <view style='height:90rpx'> | |
| 51 | + <text class='text_black_30 float_left'>教育类型</text> | |
| 52 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 53 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择教育类型</text> | |
| 54 | + </view> | |
| 55 | + <view class='divide_line_f5f5f5'></view> | |
| 56 | + <view wx:if="{{lable!=0}}"> | |
| 57 | + <view style='height:90rpx'> | |
| 58 | + <text class='text_black_30 float_left'>学历教育阶段</text> | |
| 59 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入学历教育阶段'></input> | |
| 60 | + </view> | |
| 61 | + <view class='divide_line_f5f5f5'></view> | |
| 62 | + <view style='height:90rpx'> | |
| 63 | + <text class='text_black_30 float_left'>学籍号</text> | |
| 64 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入学籍号'></input> | |
| 65 | + </view> | |
| 66 | + </view> | |
| 67 | + <view wx:else> | |
| 68 | + <view style='height:90rpx'> | |
| 69 | + <text class='text_black_30 float_left'>职业资格名称</text> | |
| 70 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入职业资格名称'></input> | |
| 71 | + </view> | |
| 72 | + <view class='divide_line_f5f5f5'></view> | |
| 73 | + <view style='height:90rpx'> | |
| 74 | + <text class='text_black_30 float_left'>职业资格编号</text> | |
| 75 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入职业资格编号'></input> | |
| 76 | + </view> | |
| 77 | + </view> | |
| 78 | + <view class='divide_line_f5f5f5'></view> | |
| 79 | + <view style='height:90rpx'> | |
| 80 | + <text class='text_black_30 float_left'>扣除时间</text> | |
| 81 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 82 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择扣除时间</text> | |
| 83 | + </view> | |
| 84 | + </view> | |
| 85 | + | |
| 86 | + <!-- 赡养老人 --> | |
| 87 | + <view wx:if="{{cur_index==2}}"> | |
| 88 | + <view style='height:90rpx'> | |
| 89 | + <text class='text_black_30 float_left'>老人姓名</text> | |
| 90 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入老人姓名'></input> | |
| 91 | + </view> | |
| 92 | + <view class='divide_line_f5f5f5'></view> | |
| 93 | + <view style='height:90rpx'> | |
| 94 | + <text class='text_black_30 float_left'>老人身份证号</text> | |
| 95 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入老人身份证号'></input> | |
| 96 | + </view> | |
| 97 | + <view class='divide_line_f5f5f5'></view> | |
| 98 | + <view style='height:90rpx'> | |
| 99 | + <text class='text_black_30 float_left'>与老人关系</text> | |
| 100 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 101 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择与老人关系</text> | |
| 102 | + </view> | |
| 103 | + <view class='divide_line_f5f5f5'></view> | |
| 104 | + <view style='height:90rpx'> | |
| 105 | + <text class='text_black_30 float_left'>是否独生子女</text> | |
| 106 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 107 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择是否独生子女</text> | |
| 108 | + </view> | |
| 109 | + <view class='divide_line_f5f5f5'></view> | |
| 110 | + <view style='height:90rpx'> | |
| 111 | + <text class='text_black_30 float_left'>分摊比例</text> | |
| 112 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入分摊比例'></input> | |
| 113 | + </view> | |
| 114 | + <view class='divide_line_f5f5f5'></view> | |
| 115 | + <view style='height:90rpx'> | |
| 116 | + <text class='text_black_30 float_left'>扣除时间</text> | |
| 117 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 118 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择扣除时间</text> | |
| 119 | + </view> | |
| 120 | + </view> | |
| 121 | + | |
| 122 | + <!-- 大病医疗 --> | |
| 123 | + <view wx:if="{{cur_index==3}}"> | |
| 124 | + <view style='height:90rpx'> | |
| 125 | + <text class='text_black_30 float_left'>扣除金额</text> | |
| 126 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入扣除金额'></input> | |
| 127 | + </view> | |
| 128 | + <view class='divide_line_f5f5f5'></view> | |
| 129 | + <view style='height:90rpx'> | |
| 130 | + <text class='text_black_30 float_left'>扣除时间</text> | |
| 131 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 132 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择扣除时间</text> | |
| 133 | + </view> | |
| 134 | + </view> | |
| 135 | + | |
| 136 | + <!-- 住房 --> | |
| 137 | + <view wx:if="{{cur_index==4}}"> | |
| 138 | + <view style='height:90rpx'> | |
| 139 | + <text class='text_black_30 float_left'>配偶姓名</text> | |
| 140 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入扣除金额'></input> | |
| 141 | + </view> | |
| 142 | + <view class='divide_line_f5f5f5'></view> | |
| 143 | + <view style='height:90rpx'> | |
| 144 | + <text class='text_black_30 float_left'>配偶身份证号</text> | |
| 145 | + <input class='input_wrap float_right' placeholder-class='text_999_30 float_right' style='line-height: 90rpx;text-align: right' placeholder='请输入配偶身份证号'></input> | |
| 146 | + </view> | |
| 147 | + <view class='divide_line_f5f5f5'></view> | |
| 148 | + <view style='height:90rpx'> | |
| 149 | + <text class='text_black_30 float_left'>扣除时间</text> | |
| 150 | + <image class='arrow_wrap' src='/images/arrow_right.png'></image> | |
| 151 | + <text class='text_999_30 float_right' style='line-height: 90rpx;text-align:right'>请选择扣除时间</text> | |
| 152 | + </view> | |
| 153 | + </view> | |
| 154 | + | |
| 155 | + <view class='divide_line_f5f5f5'></view> | |
| 156 | + <view class='text_black_30 float_left'>上传材料</view> | |
| 157 | + </view> | |
| 158 | + <view style='margin-bottom:140rpx'> | |
| 159 | + <image src='/images/upload_img.png' style='width:100%;height:380rpx' bindtap='goupload'></image> | |
| 160 | + <view class='text_999_30' style='text-align:center;margin:20rpx 30rpx'>{{extrainfo_arr[cur_index]}}</view> | |
| 161 | + </view> | |
| 162 | + | |
| 163 | + <view class="btn_bottom"> | |
| 164 | + <button class="btn_bottom"> 保存</button> | |
| 165 | + </view> | |
| 166 | +</scroll-view> | |
| \ No newline at end of file | ... | ... |
| 1 | +/* pages/main/addtionalreduce/addextrainfo/addextrainfo.wxss */ | |
| 2 | +.text_black_30 { | |
| 3 | + font-family: PingFangSC-Regular; | |
| 4 | + font-size: 30rpx; | |
| 5 | + color: #000; | |
| 6 | + line-height: 90rpx; | |
| 7 | + text-align: left | |
| 8 | +} | |
| 9 | + | |
| 10 | +.input_wrap { | |
| 11 | + width: 500rpx; | |
| 12 | + height: 90rpx; | |
| 13 | + font-size: 30rpx; | |
| 14 | + color: #333; | |
| 15 | + text-align: right; | |
| 16 | + overflow: hidden; | |
| 17 | + text-overflow: ellipsis; | |
| 18 | + white-space: nowrap; | |
| 19 | +} | |
| 20 | + | |
| 21 | +.arrow_wrap { | |
| 22 | + width: 40rpx; | |
| 23 | + height: 40rpx; | |
| 24 | + float: right; | |
| 25 | + margin-top:24rpx; | |
| 26 | + | |
| 27 | +} | ... | ... |
| ... | ... | @@ -5,7 +5,7 @@ Page({ |
| 5 | 5 | * Page initial data |
| 6 | 6 | */ |
| 7 | 7 | data: { |
| 8 | - datas:["子女教育","继续教育","赡养老人","大病医疗"] | |
| 8 | + datas:["子女教育","继续教育","赡养老人","大病医疗","住房贷款利息"] | |
| 9 | 9 | }, |
| 10 | 10 | |
| 11 | 11 | /** |
| ... | ... | @@ -27,6 +27,13 @@ Page({ |
| 27 | 27 | }) |
| 28 | 28 | }, |
| 29 | 29 | |
| 30 | + lookandadd: function (e) { | |
| 31 | + console.log("lookandadd",e); | |
| 32 | + wx.navigateTo({ | |
| 33 | + url: 'lookandupdate/lookandupdate?index=' + e.currentTarget.id, | |
| 34 | + }) | |
| 35 | + }, | |
| 36 | + | |
| 30 | 37 | /** |
| 31 | 38 | * Lifecycle function--Called when page is initially rendered |
| 32 | 39 | */ | ... | ... |
| ... | ... | @@ -30,9 +30,9 @@ |
| 30 | 30 | <block wx:for="{{datas}}" wx:key=""> |
| 31 | 31 | <view class='divide_line'></view> |
| 32 | 32 | <view style='padding:44rpx 30rpx;display:flex;flex-direction:column'> |
| 33 | - <view> | |
| 33 | + <view > | |
| 34 | 34 | <text class='text_666_30 float_left'>{{datas[index]}}</text> |
| 35 | - <text class='text_blue_28 float_right'>查看并调整</text> | |
| 35 | + <text class='text_blue_28 float_right' bindtap='lookandadd' id='{{index}}'>查看并调整</text> | |
| 36 | 36 | </view> |
| 37 | 37 | <view style='margin-top:20rpx'> |
| 38 | 38 | <text class='text_gray_22 float_left'>已抵扣额度:4890.00</text> | ... | ... |
| 1 | +// pages/main/addtionalreduce/childreneducate/childreneducate.js | |
| 2 | +Page({ | |
| 3 | + | |
| 4 | + /** | |
| 5 | + * Page initial data | |
| 6 | + */ | |
| 7 | + data: { | |
| 8 | + cur_index:0, | |
| 9 | + add_text_arr: ["添加子女", "添加继续教育", "添加老人", "添加大病医疗", "添加住房贷款利息"], | |
| 10 | + title_arr: ["子女教育", "继续教育","赡养老人","大病医疗","住房贷款利息"] | |
| 11 | + }, | |
| 12 | + | |
| 13 | + /** | |
| 14 | + * Lifecycle function--Called when page load | |
| 15 | + */ | |
| 16 | + onLoad: function (options) { | |
| 17 | + console.log("options", options); | |
| 18 | + this.setData({ | |
| 19 | + cur_index: options.index | |
| 20 | + }) | |
| 21 | + wx.setNavigationBarTitle({ | |
| 22 | + title: this.data.title_arr[this.data.cur_index] | |
| 23 | + }) | |
| 24 | + }, | |
| 25 | + | |
| 26 | + /** | |
| 27 | + * Lifecycle function--Called when page is initially rendered | |
| 28 | + */ | |
| 29 | + onReady: function () { | |
| 30 | + | |
| 31 | + }, | |
| 32 | + | |
| 33 | + /** | |
| 34 | + * Lifecycle function--Called when page show | |
| 35 | + */ | |
| 36 | + onShow: function () { | |
| 37 | + | |
| 38 | + }, | |
| 39 | + | |
| 40 | + lookimg:function(){//查看材料 | |
| 41 | + | |
| 42 | + }, | |
| 43 | + | |
| 44 | + goadd:function(e){//添加 | |
| 45 | + wx.navigateTo({ | |
| 46 | + url: '../addextrainfo/addextrainfo?index=' + this.data.cur_index, | |
| 47 | + }) | |
| 48 | + }, | |
| 49 | + | |
| 50 | + /** | |
| 51 | + * Lifecycle function--Called when page hide | |
| 52 | + */ | |
| 53 | + onHide: function () { | |
| 54 | + | |
| 55 | + }, | |
| 56 | + | |
| 57 | + /** | |
| 58 | + * Lifecycle function--Called when page unload | |
| 59 | + */ | |
| 60 | + onUnload: function () { | |
| 61 | + | |
| 62 | + }, | |
| 63 | + | |
| 64 | + /** | |
| 65 | + * Page event handler function--Called when user drop down | |
| 66 | + */ | |
| 67 | + onPullDownRefresh: function () { | |
| 68 | + | |
| 69 | + }, | |
| 70 | + | |
| 71 | + /** | |
| 72 | + * Called when page reach bottom | |
| 73 | + */ | |
| 74 | + onReachBottom: function () { | |
| 75 | + | |
| 76 | + }, | |
| 77 | + | |
| 78 | + /** | |
| 79 | + * Called when user click on the top right corner to share | |
| 80 | + */ | |
| 81 | + onShareAppMessage: function () { | |
| 82 | + | |
| 83 | + } | |
| 84 | +}) | |
| \ No newline at end of file | ... | ... |
| 1 | +<!--pages/main/addtionalreduce/childreneducate/childreneducate.wxml--> | |
| 2 | + | |
| 3 | +<view class='page'> | |
| 4 | + <view style='display:flex;flex-direction:column'> | |
| 5 | + <view style='height:180rpx'> | |
| 6 | + <image style='width:100%;height:180rpx;position:absolute;z-index: 1;' 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'>9161609.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'>39106.91</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;height:100rpx;'> | |
| 22 | + <image class='icon_wrap' src="/images/rectangle_icon.png"></image> | |
| 23 | + <text style='padding-left:20rpx;line-height:100rpx' class='text_gray_32'>专项附加扣除概览</text> | |
| 24 | + </view> | |
| 25 | + <view class='divide_line_f5f5f5'></view> | |
| 26 | + <view style='margin:30rpx;' class='card_rectangle_bg_column'> | |
| 27 | + <!-- 子女教育 --> | |
| 28 | + <view wx:if="{{cur_index==0}}" style='display:flex;flex-direction:column;padding:30rpx;'> | |
| 29 | + <view style='height:40rpx'> | |
| 30 | + <text class='text_999_28 float_left'>子女姓名</text> | |
| 31 | + <text class='text_333_28 float_right'>纳兰嫣然</text> | |
| 32 | + </view> | |
| 33 | + <view style='height:40rpx'> | |
| 34 | + <text class='text_999_28 float_left'>子女母亲姓名</text> | |
| 35 | + <text class='text_333_28 float_right'>纳兰容若</text> | |
| 36 | + </view> | |
| 37 | + <view style='height:40rpx'> | |
| 38 | + <text class='text_999_28 float_left'>子女身份证号</text> | |
| 39 | + <text class='text_333_28 float_right'>4225238975982724781</text> | |
| 40 | + </view> | |
| 41 | + <view style='height:40rpx'> | |
| 42 | + <text class='text_999_28 float_left'>学籍号</text> | |
| 43 | + <text class='text_333_28 float_right'>86309486903</text> | |
| 44 | + </view> | |
| 45 | + <view style='height:40rpx'> | |
| 46 | + <text class='text_999_28 float_left'>教育阶段</text> | |
| 47 | + <text class='text_333_28 float_right'>高中</text> | |
| 48 | + </view> | |
| 49 | + <view style='height:40rpx'> | |
| 50 | + <text class='text_999_28 float_left'>扣除金额</text> | |
| 51 | + <text class='text_333_28 float_right'>3232.0</text> | |
| 52 | + </view> | |
| 53 | + <view style='height:40rpx'> | |
| 54 | + <text class='text_999_28 float_left'>扣除比例</text> | |
| 55 | + <text class='text_333_28 float_right'>40%</text> | |
| 56 | + </view> | |
| 57 | + <view style='height:40rpx'> | |
| 58 | + <text class='text_999_28 float_left'>扣除时间</text> | |
| 59 | + <text class='text_333_28 float_right'>2018年10月</text> | |
| 60 | + </view> | |
| 61 | + </view> | |
| 62 | + | |
| 63 | + <!-- 继续教育 --> | |
| 64 | + <view wx:if="{{cur_index==1}}" style='display:flex;flex-direction:column;padding:30rpx;'> | |
| 65 | + <view style='height:40rpx'> | |
| 66 | + <text class='text_999_28 float_left'>教育类型</text> | |
| 67 | + <text class='text_333_28 float_right'>消防工程师</text> | |
| 68 | + </view> | |
| 69 | + <view style='height:40rpx'> | |
| 70 | + <text class='text_999_28 float_left'>职业资格名称</text> | |
| 71 | + <text class='text_333_28 float_right'>pmp</text> | |
| 72 | + </view> | |
| 73 | + <view style='height:40rpx'> | |
| 74 | + <text class='text_999_28 float_left'>职业资格编号</text> | |
| 75 | + <text class='text_333_28 float_right'>ed29839284</text> | |
| 76 | + </view> | |
| 77 | + <view style='height:40rpx'> | |
| 78 | + <text class='text_999_28 float_left'>扣除时间</text> | |
| 79 | + <text class='text_333_28 float_right'>2018年1月</text> | |
| 80 | + </view> | |
| 81 | + </view> | |
| 82 | + | |
| 83 | + <!-- 赡养老人 --> | |
| 84 | + <view wx:if="{{cur_index==2}}" style='display:flex;flex-direction:column;padding:30rpx;'> | |
| 85 | + <view style='height:40rpx'> | |
| 86 | + <text class='text_999_28 float_left'>老人姓名</text> | |
| 87 | + <text class='text_333_28 float_right'>任我行</text> | |
| 88 | + </view> | |
| 89 | + <view style='height:40rpx'> | |
| 90 | + <text class='text_999_28 float_left'>老人身份证号</text> | |
| 91 | + <text class='text_333_28 float_right'>9523</text> | |
| 92 | + </view> | |
| 93 | + <view style='height:40rpx'> | |
| 94 | + <text class='text_999_28 float_left'>与老人关系</text> | |
| 95 | + <text class='text_333_28 float_right'>父子</text> | |
| 96 | + </view> | |
| 97 | + <view style='height:40rpx'> | |
| 98 | + <text class='text_999_28 float_left'>是否独生子女</text> | |
| 99 | + <text class='text_333_28 float_right'>否</text> | |
| 100 | + </view> | |
| 101 | + <view style='height:40rpx'> | |
| 102 | + <text class='text_999_28 float_left'>分摊比例</text> | |
| 103 | + <text class='text_333_28 float_right'>5:5</text> | |
| 104 | + </view> | |
| 105 | + <view style='height:40rpx'> | |
| 106 | + <text class='text_999_28 float_left'>扣除时间</text> | |
| 107 | + <text class='text_333_28 float_right'>2019年10月</text> | |
| 108 | + </view> | |
| 109 | + </view> | |
| 110 | + | |
| 111 | + <!-- 大病医疗 --> | |
| 112 | + <view wx:if="{{cur_index==3}}" style='display:flex;flex-direction:column;padding:30rpx;'> | |
| 113 | + <view style='height:40rpx'> | |
| 114 | + <text class='text_999_28 float_left'>扣除金额</text> | |
| 115 | + <text class='text_333_28 float_right'>42895</text> | |
| 116 | + </view> | |
| 117 | + <view style='height:40rpx'> | |
| 118 | + <text class='text_999_28 float_left'>扣除时间</text> | |
| 119 | + <text class='text_333_28 float_right'>2019年10月</text> | |
| 120 | + </view> | |
| 121 | + </view> | |
| 122 | + | |
| 123 | + <!-- 住房 --> | |
| 124 | + <view wx:if="{{cur_index==4}}" style='display:flex;flex-direction:column;padding:30rpx;'> | |
| 125 | + <view style='height:40rpx'> | |
| 126 | + <text class='text_999_28 float_left'>配偶姓名</text> | |
| 127 | + <text class='text_333_28 float_right'>刘顺丰</text> | |
| 128 | + </view> | |
| 129 | + <view style='height:40rpx'> | |
| 130 | + <text class='text_999_28 float_left'>配偶身份证号</text> | |
| 131 | + <text class='text_333_28 float_right'>42902384023855252</text> | |
| 132 | + </view> | |
| 133 | + <view style='height:40rpx'> | |
| 134 | + <text class='text_999_28 float_left'>扣除时间</text> | |
| 135 | + <text class='text_333_28 float_right'>2019年10月</text> | |
| 136 | + </view> | |
| 137 | + </view> | |
| 138 | + | |
| 139 | + <view class='divide_line_f5f5f5' style='margin-top:20rpx'></view> | |
| 140 | + <view class='text_blue_28' style='line-height:80rpx' bindtap='lookimg'>查看材料</view> | |
| 141 | + </view> | |
| 142 | + | |
| 143 | + <view class='rectangle_dashed_bg' bindtap='goadd'> | |
| 144 | + <view class='text_blue_28' style='line-height:90rpx'> | |
| 145 | + 十 {{add_text_arr[cur_index]}} | |
| 146 | + </view> | |
| 147 | + </view> | |
| 148 | + </view> | |
| 149 | +</view> | |
| \ No newline at end of file | ... | ... |
| 1 | +/* pages/main/addtionalreduce/childreneducate/childreneducate.wxss */ | |
| 2 | + | |
| 3 | +.view_bg_wrap { | |
| 4 | + position: absolute; | |
| 5 | + z-index: 2; | |
| 6 | + display: flex; | |
| 7 | + width: 100%; | |
| 8 | + flex-wrap: nowrap; | |
| 9 | +} | |
| 10 | + | |
| 11 | +.text_num_wrap { | |
| 12 | + font-family: PingFangSC-Regular; | |
| 13 | + font-size: 18px; | |
| 14 | + color: #fff; | |
| 15 | + text-align: center; | |
| 16 | +} | |
| 17 | + | |
| 18 | +.text_text_wrap { | |
| 19 | + font-family: PingFangSC-Regular; | |
| 20 | + font-size: 12px; | |
| 21 | + color: #fff; | |
| 22 | + text-align: center; | |
| 23 | +} | |
| 24 | + | |
| 25 | +.icon_wrap { | |
| 26 | + width: 8rpx; | |
| 27 | + height: 28rpx; | |
| 28 | +} | |
| 29 | + | |
| 30 | +.text_gray_32 { | |
| 31 | + font-size: 32rpx; | |
| 32 | + color: #6c7596; | |
| 33 | + font-family: PingFangSC-Semibold; | |
| 34 | +} | |
| 35 | + | |
| 36 | +.text_999_28 { | |
| 37 | + font-family: PingFangSC-Regular; | |
| 38 | + font-size: 28rpx; | |
| 39 | + color: #999; | |
| 40 | + text-align: right; | |
| 41 | +} | |
| 42 | + | |
| 43 | +.text_333_28 { | |
| 44 | + font-family: PingFangSC-Regular; | |
| 45 | + font-size: 28rpx; | |
| 46 | + color: #333; | |
| 47 | + text-align: right; | |
| 48 | +} | |
| 49 | + | |
| 50 | +.text_blue_28 { | |
| 51 | + font-family: PingFangSC-Regular; | |
| 52 | + font-size: 28rpx; | |
| 53 | + color: #3795ff; | |
| 54 | + text-align: center; | |
| 55 | +} | |
| 56 | + | |
| 57 | +.rectangle_dashed_bg { | |
| 58 | + height: 90rpx; | |
| 59 | + margin: 40rpx 32rpx; | |
| 60 | + border-style: dashed; | |
| 61 | + background: #fff; | |
| 62 | + border: 1px dashed #d7e4fb; | |
| 63 | + border-radius: 4px; | |
| 64 | +} | ... | ... |
| ... | ... | @@ -10,7 +10,7 @@ |
| 10 | 10 | </view> |
| 11 | 11 | </view> |
| 12 | 12 | <view class='divide_line_f5f5f5'></view> |
| 13 | - <view style='margin: 30rpx;positive:relative;width:92%;height:434rpx'> | |
| 13 | + <view style='margin: 30rpx;positive:relative;width:92%;height:454rpx'> | |
| 14 | 14 | <image class=' payment_img_bg ' src='/images/payment_bg.png ' style='position:absolute;z-index: 1;'></image> |
| 15 | 15 | <view> |
| 16 | 16 | <view class='view_bg_wrap' style='margin-top: 48rpx;'> |
| ... | ... | @@ -40,8 +40,8 @@ |
| 40 | 40 | <text class='text_text_wrap'>汇算补差</text> |
| 41 | 41 | </view> |
| 42 | 42 | </view> |
| 43 | - <view style='position: absolute;z-index: 2;display: flex;margin-top:370rpx;width:100%;justify-content: center;' bindtap='gohistory'> | |
| 44 | - <text class='text_blue_wrap_28' style=''>查看历史缴税信息</text> | |
| 43 | + <view style='position: absolute;z-index: 2;display: flex;margin-top:330rpx;width:92%;justify-content: center;background:#fff;height:84rpx' bindtap='gohistory'> | |
| 44 | + <text class='text_blue_wrap_28' style='line-height:84rpx'>查看历史缴税信息</text> | |
| 45 | 45 | </view> |
| 46 | 46 | </view> |
| 47 | 47 | </view> | ... | ... |
请
注册
或
登录
后发表评论