正在显示
8 个修改的文件
包含
485 行增加
和
32 行删除
@@ -24,6 +24,7 @@ | @@ -24,6 +24,7 @@ | ||
24 | "pages/main/finalpay/home", | 24 | "pages/main/finalpay/home", |
25 | "pages/main/finalpay/incomeDetail/incomeDetail", | 25 | "pages/main/finalpay/incomeDetail/incomeDetail", |
26 | "pages/main/finalpay/incomeAddition/incomeAddition", | 26 | "pages/main/finalpay/incomeAddition/incomeAddition", |
27 | + "pages/main/finalpay/addUnitInfo/addUnitInfo", | ||
27 | 28 | ||
28 | "pages/login/login", | 29 | "pages/login/login", |
29 | "pages/main/advancepayment/adPayDetails/adPayDetails", | 30 | "pages/main/advancepayment/adPayDetails/adPayDetails", |
1 | +// pages/main/finalpay/addUnitInfo/addUnitInfo.js | ||
2 | +Page({ | ||
3 | + | ||
4 | + | ||
5 | + data: { | ||
6 | + | ||
7 | + }, | ||
8 | + | ||
9 | + | ||
10 | + onLoad: function(options) { | ||
11 | + | ||
12 | + }, | ||
13 | + | ||
14 | + | ||
15 | + onReady: function() { | ||
16 | + | ||
17 | + }, | ||
18 | + | ||
19 | + | ||
20 | + onShow: function() { | ||
21 | + | ||
22 | + }, | ||
23 | + | ||
24 | + formSubmit: function(e) {//提交 | ||
25 | + console.log("formSubmit", e); | ||
26 | + var formdata = e.detail.value | ||
27 | + }, | ||
28 | + | ||
29 | + onHide: function() { | ||
30 | + | ||
31 | + }, | ||
32 | + | ||
33 | + | ||
34 | + onUnload: function() { | ||
35 | + | ||
36 | + }, | ||
37 | + | ||
38 | + | ||
39 | + onPullDownRefresh: function() { | ||
40 | + | ||
41 | + }, | ||
42 | + | ||
43 | + | ||
44 | + onReachBottom: function() { | ||
45 | + | ||
46 | + }, | ||
47 | + | ||
48 | + | ||
49 | + onShareAppMessage: function() { | ||
50 | + | ||
51 | + } | ||
52 | +}) |
1 | +<!--pages/main/finalpay/addUnitInfo/addUnitInfo.wxml--> | ||
2 | + | ||
3 | +<view class="page"> | ||
4 | + <form bindsubmit='formSubmit'> | ||
5 | + <view class="swiper-box page" style="height:100%;" bindchange="bindChange"> | ||
6 | + <!-- 境内收入 --> | ||
7 | + <view style="background:#fff;margin-top:20rpx"> | ||
8 | + <view style="margin-bottom:20rpx;margin-left:30rpx"> | ||
9 | + <text class="text_black3_34">境内收入</text> | ||
10 | + </view> | ||
11 | + <view class='divide_line_30'></view> | ||
12 | + <view style="height:104rpx;padding:0 30rpx"> | ||
13 | + <text class="text_gray7_34" style="line-height:104rpx">工资薪金收入</text> | ||
14 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='total_salary'></input> | ||
15 | + </view> | ||
16 | + <view class='divide_line_30'></view> | ||
17 | + <view style="height:104rpx;padding:0 30rpx"> | ||
18 | + <text class="text_gray7_34" style="line-height:104rpx">劳务报酬收入</text> | ||
19 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='remuneration_labor'></input> | ||
20 | + </view> | ||
21 | + <view class='divide_line_30'></view> | ||
22 | + <view style="height:104rpx;padding:0 30rpx"> | ||
23 | + <text class="text_gray7_34" style="line-height:104rpx">稿酬收入</text> | ||
24 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='author_payment'></input> | ||
25 | + </view> | ||
26 | + <view class='divide_line_30'></view> | ||
27 | + <view style="height:104rpx;padding:0 30rpx"> | ||
28 | + <text class="text_gray7_34" style="line-height:104rpx">特许经营权</text> | ||
29 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='special_manage_cost'></input> | ||
30 | + </view> | ||
31 | + </view> | ||
32 | + <!-- 免税收入 --> | ||
33 | + <view style="background:#fff;margin-top:20rpx"> | ||
34 | + <view style="margin-bottom:20rpx;margin-left:30rpx"> | ||
35 | + <text class="text_black3_34">免税收入</text> | ||
36 | + </view> | ||
37 | + <view class='divide_line_30'></view> | ||
38 | + <view style="height:104rpx;padding:0 30rpx"> | ||
39 | + <text class="text_gray7_34" style="line-height:104rpx">其他免税收入</text> | ||
40 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='other_free_income'></input> | ||
41 | + </view> | ||
42 | + </view> | ||
43 | + <!-- 专项扣除 --> | ||
44 | + <view style="background:#fff;margin-top:20rpx"> | ||
45 | + <view style="margin-bottom:20rpx;margin-left:30rpx"> | ||
46 | + <text class="text_black3_34">专项扣除</text> | ||
47 | + </view> | ||
48 | + <view class='divide_line_30'></view> | ||
49 | + <view style="height:104rpx;padding:0 30rpx"> | ||
50 | + <text class="text_gray7_34" style="line-height:104rpx">养老保险</text> | ||
51 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='personal_endowment'></input> | ||
52 | + </view> | ||
53 | + <view class='divide_line_30'></view> | ||
54 | + <view style="height:104rpx;padding:0 30rpx"> | ||
55 | + <text class="text_gray7_34" style="line-height:104rpx">医疗保险</text> | ||
56 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='personal_medical'></input> | ||
57 | + </view> | ||
58 | + <view class='divide_line_30'></view> | ||
59 | + <view style="height:104rpx;padding:0 30rpx"> | ||
60 | + <text class="text_gray7_34" style="line-height:104rpx">失业保险</text> | ||
61 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='personal_unemployment'></input> | ||
62 | + </view> | ||
63 | + <view class='divide_line_30'></view> | ||
64 | + <view style="height:104rpx;padding:0 30rpx"> | ||
65 | + <text class="text_gray7_34" style="line-height:104rpx">住房公积金</text> | ||
66 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='personal_house_fund'></input> | ||
67 | + </view> | ||
68 | + </view> | ||
69 | + <!-- 专项附加扣除 --> | ||
70 | + <view style="background:#fff;margin-top:20rpx"> | ||
71 | + <view style="margin-bottom:20rpx;margin-left:30rpx"> | ||
72 | + <text class="text_black3_34">专项附加扣除</text> | ||
73 | + </view> | ||
74 | + <view class='divide_line_30'></view> | ||
75 | + <view style="height:104rpx;padding:0 30rpx"> | ||
76 | + <text class="text_gray7_34" style="line-height:104rpx">子女教育</text> | ||
77 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='childrens_education'></input> | ||
78 | + </view> | ||
79 | + <view class='divide_line_30'></view> | ||
80 | + <view style="height:104rpx;padding:0 30rpx"> | ||
81 | + <text class="text_gray7_34" style="line-height:104rpx">继续教育</text> | ||
82 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='continuing_education'></input> | ||
83 | + </view> | ||
84 | + <view class='divide_line_30'></view> | ||
85 | + <view style="height:104rpx;padding:0 30rpx"> | ||
86 | + <text class="text_gray7_34" style="line-height:104rpx">住房贷款利息</text> | ||
87 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='housing_loan_interest'></input> | ||
88 | + </view> | ||
89 | + <view class='divide_line_30'></view> | ||
90 | + <view style="height:104rpx;padding:0 30rpx"> | ||
91 | + <text class="text_gray7_34" style="line-height:104rpx">住房租金</text> | ||
92 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='housing_rent'></input> | ||
93 | + </view> | ||
94 | + <view class='divide_line_30'></view> | ||
95 | + <view style="height:104rpx;padding:0 30rpx"> | ||
96 | + <text class="text_gray7_34" style="line-height:104rpx">赡养老人</text> | ||
97 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='caring_old_people'></input> | ||
98 | + </view> | ||
99 | + <view class='divide_line_30'></view> | ||
100 | + <view style="height:104rpx;padding:0 30rpx"> | ||
101 | + <text class="text_gray7_34" style="line-height:104rpx">大病医疗</text> | ||
102 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='serious_illness_medical'></input> | ||
103 | + </view> | ||
104 | + </view> | ||
105 | + <!-- 其他扣除 --> | ||
106 | + <view style="background:#fff;margin-top:20rpx"> | ||
107 | + <view style="margin-bottom:20rpx;margin-left:30rpx"> | ||
108 | + <text class="text_black3_34">其他扣除</text> | ||
109 | + </view> | ||
110 | + <view class='divide_line_30'></view> | ||
111 | + <view style="height:104rpx;padding:0 30rpx"> | ||
112 | + <text class="text_gray7_34" style="line-height:104rpx">年金</text> | ||
113 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='annuity'></input> | ||
114 | + </view> | ||
115 | + <view class='divide_line_30'></view> | ||
116 | + <view style="height:104rpx;padding:0 30rpx"> | ||
117 | + <text class="text_gray7_34" style="line-height:104rpx">商业健康保险</text> | ||
118 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='commercial_insurance'></input> | ||
119 | + </view> | ||
120 | + <view class='divide_line_30'></view> | ||
121 | + <view style="height:104rpx;padding:0 30rpx"> | ||
122 | + <text class="text_gray7_34" style="line-height:104rpx">税延养老保险</text> | ||
123 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='tax_extension'></input> | ||
124 | + </view> | ||
125 | + <view class='divide_line_30'></view> | ||
126 | + <view style="height:104rpx;padding:0 30rpx"> | ||
127 | + <text class="text_gray7_34" style="line-height:104rpx">其他</text> | ||
128 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='other_fee'></input> | ||
129 | + </view> | ||
130 | + </view> | ||
131 | + <!-- 捐赠扣除 --> | ||
132 | + <view style="background:#fff;margin-top:20rpx"> | ||
133 | + <view style="margin-bottom:20rpx;margin-left:30rpx"> | ||
134 | + <text class="text_black3_34">捐赠扣除</text> | ||
135 | + </view> | ||
136 | + <view class='divide_line_30'></view> | ||
137 | + <view style="height:104rpx;padding:0 30rpx"> | ||
138 | + <text class="text_gray7_34" style="line-height:104rpx">准予扣除的捐赠额</text> | ||
139 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='donation_deducted'></input> | ||
140 | + </view> | ||
141 | + <view class='divide_line_30'></view> | ||
142 | + <view style="height:104rpx;padding:0 30rpx"> | ||
143 | + <text class="text_gray7_34" style="line-height:104rpx">全年一次性奖金</text> | ||
144 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='years_bouns'></input> | ||
145 | + </view> | ||
146 | + </view> | ||
147 | + <!-- 减免/已缴纳税额 --> | ||
148 | + <view style="background:#fff;margin-top:20rpx"> | ||
149 | + <view style="margin-bottom:20rpx;margin-left:30rpx"> | ||
150 | + <text class="text_black3_34">减免/已缴纳税额</text> | ||
151 | + </view> | ||
152 | + <view class='divide_line_30'></view> | ||
153 | + <view style="height:104rpx;padding:0 30rpx"> | ||
154 | + <text class="text_gray7_34" style="line-height:104rpx">减免税额</text> | ||
155 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='tax_savings'></input> | ||
156 | + </view> | ||
157 | + <view class='divide_line_30'></view> | ||
158 | + <view style="height:104rpx;padding:0 30rpx"> | ||
159 | + <text class="text_gray7_34" style="line-height:104rpx">已缴税额</text> | ||
160 | + <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='accumulated_withholding_tax'></input> | ||
161 | + </view> | ||
162 | + </view> | ||
163 | + </view> | ||
164 | + <view style='width:100%;height:180rpx;background:#f5f5f5'></view> | ||
165 | + <view class="btn_bottom" > | ||
166 | + <button class="btn_bottom" formType="submit">提交</button> | ||
167 | + </view> | ||
168 | + </form> | ||
169 | +</view> |
1 | +/* pages/main/finalpay/addUnitInfo/addUnitInfo.wxss */ | ||
2 | +.page { | ||
3 | + background-color: #f5f5f5; | ||
4 | +} | ||
5 | + | ||
6 | +.text_translate_34 { | ||
7 | + font-family:PingFangSC-Regular,PingFang SC; | ||
8 | + font-size: 34rpx; | ||
9 | + color: #80000000; | ||
10 | + line-height: 24px; | ||
11 | +} | ||
12 | + | ||
13 | +.text_black6_32 { | ||
14 | + font-family:PingFangSC-Regular,PingFang SC; | ||
15 | + font-size: 32rpx; | ||
16 | + color: #666666; | ||
17 | + text-align: center; | ||
18 | + line-height: 32px; | ||
19 | +} | ||
20 | + | ||
21 | +.text_black3_34 { | ||
22 | + font-family:PingFangSC-Medium,PingFang SC; | ||
23 | + font-size: 34rpx; | ||
24 | + color: #333333; | ||
25 | + text-align: center; | ||
26 | + line-height: 24px; | ||
27 | +} | ||
28 | + | ||
29 | +.text_gray7_34 { | ||
30 | + font-family:PingFangSC-Regular,PingFang SC; | ||
31 | + font-size: 34rpx; | ||
32 | + color:rgba(119,119,119,1); | ||
33 | + line-height: 24px; | ||
34 | +} | ||
35 | + | ||
36 | +.input_wrap { | ||
37 | + max-width: 500rpx; | ||
38 | + height: 104rpx; | ||
39 | + font-size: 34rpx; | ||
40 | + color: #333; | ||
41 | + text-align: right; | ||
42 | + overflow: hidden; | ||
43 | + text-overflow: ellipsis; | ||
44 | + white-space: nowrap; | ||
45 | + float: right | ||
46 | +} |
@@ -10,14 +10,16 @@ Page({ | @@ -10,14 +10,16 @@ Page({ | ||
10 | pay_status: "",//补税状态 | 10 | pay_status: "",//补税状态 |
11 | payinfo:{}, | 11 | payinfo:{}, |
12 | unitInfo: [{ | 12 | unitInfo: [{ |
13 | - "declaring_unit": "申报单位", | 13 | + "declaring_unit": "bjxa", |
14 | "declaring_unit_id": "申报单位id", | 14 | "declaring_unit_id": "申报单位id", |
15 | }, | 15 | }, |
16 | { | 16 | { |
17 | - "declaring_unit": "申报单位", | 17 | + "declaring_unit": "albb", |
18 | "declaring_unit_id": "申报单位id", | 18 | "declaring_unit_id": "申报单位id", |
19 | }], | 19 | }], |
20 | showUnit:false, | 20 | showUnit:false, |
21 | + declaring_unit_id:"", | ||
22 | + showModal_selfDeclare:false, | ||
21 | }, | 23 | }, |
22 | 24 | ||
23 | 25 | ||
@@ -126,6 +128,43 @@ Page({ | @@ -126,6 +128,43 @@ Page({ | ||
126 | }) | 128 | }) |
127 | }, | 129 | }, |
128 | 130 | ||
131 | + unitPick:function(e){//选择申报单位 | ||
132 | + console.log("unitPick",e) | ||
133 | + this.setData({ | ||
134 | + declaring_unit_id:"", | ||
135 | + showUnit: false | ||
136 | + }) | ||
137 | + | ||
138 | + }, | ||
139 | + | ||
140 | + selfdeclare_close(){//关闭自行申报弹窗 | ||
141 | + this.setData({ | ||
142 | + showModal_selfDeclare: false | ||
143 | + }) | ||
144 | + }, | ||
145 | + | ||
146 | + declareBySelf:function(){//查看自行申报方式 | ||
147 | + this.setData({ | ||
148 | + showModal_selfDeclare: true | ||
149 | + }) | ||
150 | + }, | ||
151 | + | ||
152 | + godeclareHistory:function(){ | ||
153 | + wx.redirectTo({ | ||
154 | + url: '../advancepayment/adPayHome', | ||
155 | + }) | ||
156 | + }, | ||
157 | + | ||
158 | + noOtherUnitInfo:function(){//没有其他单位个税申报 | ||
159 | + | ||
160 | + }, | ||
161 | + | ||
162 | + otherUnitInfo: function () {//有其他单位个税申报 | ||
163 | + wx.navigateTo({ | ||
164 | + url: 'addUnitInfo/addUnitInfo', | ||
165 | + }) | ||
166 | + }, | ||
167 | + | ||
129 | onHide: function() { | 168 | onHide: function() { |
130 | 169 | ||
131 | }, | 170 | }, |
@@ -9,7 +9,7 @@ | @@ -9,7 +9,7 @@ | ||
9 | </view> | 9 | </view> |
10 | </view> | 10 | </view> |
11 | 11 | ||
12 | - <view style="background:#fff;padding:30rpx 30rpx 60rpx 30rpx;margin-top:20rpx"> | 12 | + <view style="background:#fff;padding:30rpx 30rpx 50rpx 30rpx;margin-top:20rpx"> |
13 | <text class="text_gray3_26">了解汇算清缴具体内容,请阅读 </text> | 13 | <text class="text_gray3_26">了解汇算清缴具体内容,请阅读 </text> |
14 | <text class="text_blue_26" bindtap="skipH5_01"> 《2019年度汇算清缴事项公告》 </text> | 14 | <text class="text_blue_26" bindtap="skipH5_01"> 《2019年度汇算清缴事项公告》 </text> |
15 | <text class="text_blue_26" bindtap="skipH5_02"> 《国家税务总局办理2019年度个人所得税综合所得汇算清缴事项的公告 》</text> | 15 | <text class="text_blue_26" bindtap="skipH5_02"> 《国家税务总局办理2019年度个人所得税综合所得汇算清缴事项的公告 》</text> |
@@ -28,16 +28,45 @@ | @@ -28,16 +28,45 @@ | ||
28 | <view hidden="true"> | 28 | <view hidden="true"> |
29 | <text class="text_gray6_28">您将在 北京小爱智能科技有限公司 完成2019年度的个人综合所得汇算清缴。 </text> | 29 | <text class="text_gray6_28">您将在 北京小爱智能科技有限公司 完成2019年度的个人综合所得汇算清缴。 </text> |
30 | </view> | 30 | </view> |
31 | + <view hidden="true"> | ||
32 | + <text class="text_gray6_28">您已选择自行申报,可继续查看在本单位的个税申报记录 </text> | ||
33 | + </view> | ||
31 | </view> | 34 | </view> |
32 | 35 | ||
33 | - <view hidden="true" style="background:#fff;"> | ||
34 | - <view style="padding:30rpx;"> | ||
35 | - <text class="text_black_bold">汇算清缴</text> | ||
36 | - <text class="text_blue_28 float_right" style="line-height:50rpx" bindtap="finalpay_detail">查看详情</text> | 36 | + <view style="background:#fff;padding:0 30rpx"> |
37 | + <text class="text_black_bold" style="margin-top:30rpx">汇算清缴申报中…</text> | ||
38 | + <view style="display: flex;margin:20rpx 0"> | ||
39 | + <image style="width:28rpx;height:28rpx;margin-right:12rpx;margin-top:4rpx" src="/images/warn_yellow.png"></image> | ||
40 | + <text class="text_gray6_28">请等候申报结果 </text> | ||
41 | + </view> | ||
42 | + <view class="divide_line_f5f5f5"></view> | ||
43 | + <view style="margin-top:20rpx"> | ||
44 | + <text class="text_gray6_28">收入总额:</text> | ||
45 | + <text class="text_gray3_28 float_right" style="line-height:50rpx" >¥12939</text> | ||
46 | + </view> | ||
47 | + <view class="view_gray_bg" style="padding:16rpx 20rpx;flex-direction: column"> | ||
48 | + <view class="text_gray9_26">其中本单位收入额:</view> | ||
49 | + <text class="text_gray9_26">其中其他单位收入额:</text> | ||
50 | + </view> | ||
51 | + <view style="margin:20rpx 0"> | ||
52 | + <text class="text_gray6_28">累计应纳税额:</text> | ||
53 | + <text class="text_gray3_28 float_right" style="line-height:50rpx" >¥12939</text> | ||
54 | + </view> | ||
55 | + <view class="divide_line_f5f5f5"></view> | ||
56 | + <view style="margin:20rpx 0"> | ||
57 | + <text class="text_gray6_28">已缴费税额:</text> | ||
58 | + <text class="text_gray3_28 float_right" style="line-height:50rpx" >¥12939</text> | ||
59 | + </view> | ||
60 | + <view class="divide_line_f5f5f5"></view> | ||
61 | + <view style="margin:20rpx 0"> | ||
62 | + <text class="text_black_bold">应补退税额:</text> | ||
63 | + <text class="text_gray3_28 float_right" style="line-height:50rpx" >¥12939</text> | ||
37 | </view> | 64 | </view> |
65 | + <view class="divide_line_f5f5f5"></view> | ||
66 | + <text class="text_blue_28 float_right" style="line-height:50rpx" bindtap="finalpay_detail">查看详情</text> | ||
38 | </view> | 67 | </view> |
39 | 68 | ||
40 | - <view style="width:100%;height:300rpx;position: fixed;bottom: 0;"> | 69 | + <view wx:if="{{false}}" style="width:100%;height:300rpx;position: fixed;bottom: 0;"> |
41 | <view style="display: flex;justify-content: center;"> | 70 | <view style="display: flex;justify-content: center;"> |
42 | <text class="text_gray6_28">距离确认是否在本单位进行汇算清缴时间还有 </text> | 71 | <text class="text_gray6_28">距离确认是否在本单位进行汇算清缴时间还有 </text> |
43 | <text class="text_yellow_28"> 28 </text> | 72 | <text class="text_yellow_28"> 28 </text> |
@@ -50,10 +79,53 @@ | @@ -50,10 +79,53 @@ | ||
50 | <view class="text_blue_34">在本单位申报</view> | 79 | <view class="text_blue_34">在本单位申报</view> |
51 | </view> | 80 | </view> |
52 | </view> | 81 | </view> |
82 | + | ||
83 | + <view wx:if="{{false}}" style="width:100%;height:260rpx;position: fixed;bottom: 0;"> | ||
84 | + <view bindtap="declareBySelf" class="btn_blue_radius" style="margin:20rpx 30rpx "> | ||
85 | + <view class="text_white_34">查看自行申报方式</view> | ||
86 | + </view> | ||
87 | + <view bindtap="godeclareHistory" class="btn_white_radius" style="margin:0rpx 30rpx "> | ||
88 | + <view class="text_blue_34">查看个税申报记录</view> | ||
89 | + </view> | ||
90 | + </view> | ||
91 | + | ||
92 | + <view wx:if="{{false}}" style="width:100%;height:300rpx;position: fixed;bottom: 0;"> | ||
93 | + <view style="display: flex;justify-content: center;"> | ||
94 | + <text class="text_gray6_28">距离确认是否在本单位进行汇算清缴时间还有 </text> | ||
95 | + <text class="text_yellow_28"> 28 </text> | ||
96 | + <text class="text_gray6_28">天</text> | ||
97 | + </view> | ||
98 | + <view bindtap="noOtherUnitInfo" class="btn_blue_radius" style="margin:20rpx 30rpx "> | ||
99 | + <view class="text_white_34">没有其他单位的收入个税</view> | ||
100 | + </view> | ||
101 | + <view bindtap="otherUnitInfo" class="btn_white_radius" style="margin:0rpx 30rpx "> | ||
102 | + <view class="text_blue_34">有其他单位的收入个税</view> | ||
103 | + </view> | ||
104 | + </view> | ||
105 | + | ||
106 | + <view class="mask" wx:if="{{showModal_selfDeclare}}"></view> | ||
107 | + <view class='modal_lg' style='' wx:if="{{showModal_selfDeclare}}"> | ||
108 | + <text class='text_black_bold'>个人如何自行完成汇算清缴申报?</text> | ||
109 | + <text class='text_gray6_28' style="margin-top:30rpx">为便利纳税人,税务机关为纳税人提供高效、快捷的网络办税渠道。纳税人可优先通过网上税务局(包括手机个人所得税app)办理年度汇算,税务机关将按规定为纳税人提供申报表预填服务;不方便通过上述方式办理的,也可以通过邮寄方式或到办税服务厅办理。</text> | ||
110 | + <text class='text_gray6_28' style="margin-top:30rpx">选择邮寄申报的,纳税人需将申报表寄送至任职受雇单位(没有任职受雇单位的,为户籍或者经常居住地)所在省、自治区、直辖区、计划单列市税务局公告指定的税务机关。</text> | ||
111 | + <view style="margin-top:30rpx"> | ||
112 | + <text class='text_gray6_28'> 更详细内容请查看</text> | ||
113 | + <text class='text_blue_28' bindtap="skipH5_02">《国家税务局关于办理2019年度个人所得税综合所得汇算清缴事项的公告》</text> | ||
114 | + </view> | ||
115 | + <view class="btn_blue_radius" style="width:100%;margin-top:40rpx;text-align: center;" bindtap="selfdeclare_close"> | ||
116 | + <text class="text_white_34" style="text-align: center;">我知道了</text> | ||
117 | + </view> | ||
118 | + | ||
119 | + </view> | ||
53 | </view> | 120 | </view> |
54 | - <view wx:elif="{{unitInfo.length>0}}" style=""> | ||
55 | - <view wx:for="{{unitInfo}}"> | ||
56 | - <text>{{item.declaring_unit}}</text> | 121 | + |
122 | + <view wx:if="{{showUnit&&unitInfo.length>0}}" style="background-color:#fff"> | ||
123 | + <view class="text_gray3_34" style="padding:30rpx">选择申报单位</view> | ||
124 | + <view class="divide_line"></view> | ||
125 | + <view wx:for="{{unitInfo}}" style="margin-left:20rpx;padding:30rpx" bindtap="unitPick"> | ||
126 | + <text class="text_gray3_32" id="{{item.declaring_unit_id}}">{{item.declaring_unit}}</text> | ||
127 | + <image class="icon_choosed" hidden="true" src="/images/icon_chat_choosed.png"></image> | ||
128 | + <view class="divide_line" style="margin-top:30rpx"></view> | ||
57 | </view> | 129 | </view> |
58 | </view> | 130 | </view> |
59 | </view> | 131 | </view> |
1 | /* pages/main/finalpay/home.wxss */ | 1 | /* pages/main/finalpay/home.wxss */ |
2 | 2 | ||
3 | .page { | 3 | .page { |
4 | + width: 100%; | ||
5 | + height: 100%; | ||
4 | background-color: #f5f5f5; | 6 | background-color: #f5f5f5; |
5 | } | 7 | } |
6 | 8 | ||
@@ -9,7 +11,7 @@ | @@ -9,7 +11,7 @@ | ||
9 | color: #000; | 11 | color: #000; |
10 | font-family: PingFangSC-Medium, PingFang SC; | 12 | font-family: PingFangSC-Medium, PingFang SC; |
11 | font-weight: 500; | 13 | font-weight: 500; |
12 | - line-height: 50rpx | 14 | + line-height: 50rpx; |
13 | } | 15 | } |
14 | 16 | ||
15 | .arrow_wrap { | 17 | .arrow_wrap { |
@@ -22,66 +24,135 @@ | @@ -22,66 +24,135 @@ | ||
22 | 24 | ||
23 | .text_gray3_26 { | 25 | .text_gray3_26 { |
24 | font-size: 26rpx; | 26 | font-size: 26rpx; |
25 | - color: #333333; | ||
26 | - font-family:PingFangSC-Regular,PingFang SC; | ||
27 | - line-height: 36rpx | 27 | + color: #333; |
28 | + font-family: PingFangSC-Regular, PingFang SC; | ||
29 | + line-height: 36rpx; | ||
28 | } | 30 | } |
29 | 31 | ||
30 | .text_gray6_28 { | 32 | .text_gray6_28 { |
31 | font-size: 28rpx; | 33 | font-size: 28rpx; |
32 | - color: #666666; | ||
33 | - font-family:PingFangSC-Regular,PingFang SC; | ||
34 | - line-height: 40rpx | 34 | + color: #666; |
35 | + font-family: PingFangSC-Regular, PingFang SC; | ||
36 | + line-height: 40rpx; | ||
35 | } | 37 | } |
36 | 38 | ||
37 | .text_yellow_28 { | 39 | .text_yellow_28 { |
38 | font-size: 28rpx; | 40 | font-size: 28rpx; |
39 | - color: #ffaa00; | ||
40 | - font-family:PingFangSC-Regular,PingFang SC; | ||
41 | - line-height: 40rpx | 41 | + color: #fa0; |
42 | + font-family: PingFangSC-Regular, PingFang SC; | ||
43 | + line-height: 40rpx; | ||
42 | } | 44 | } |
43 | 45 | ||
44 | .text_blue_26 { | 46 | .text_blue_26 { |
45 | font-size: 26rpx; | 47 | font-size: 26rpx; |
46 | color: #3795ff; | 48 | color: #3795ff; |
47 | - font-family:PingFangSC-Regular,PingFang SC; | ||
48 | - line-height: 36rpx | 49 | + font-family: PingFangSC-Regular, PingFang SC; |
50 | + line-height: 36rpx; | ||
49 | } | 51 | } |
50 | 52 | ||
51 | .text_blue_28 { | 53 | .text_blue_28 { |
52 | font-size: 28rpx; | 54 | font-size: 28rpx; |
53 | color: #3795ff; | 55 | color: #3795ff; |
54 | - font-family:PingFangSC-Regular,PingFang SC; | ||
55 | - line-height: 36rpx | 56 | + font-family: PingFangSC-Regular, PingFang SC; |
57 | + line-height: 36rpx; | ||
56 | } | 58 | } |
57 | 59 | ||
58 | -.btn_blue_radius{ | 60 | +.btn_blue_radius { |
59 | margin: 26rpx 30rx; | 61 | margin: 26rpx 30rx; |
60 | - background: #357AEB; | 62 | + background: #357aeb; |
61 | border-radius: 5px; | 63 | border-radius: 5px; |
62 | height: 84rpx; | 64 | height: 84rpx; |
63 | } | 65 | } |
64 | 66 | ||
65 | -.btn_white_radius{ | 67 | +.btn_white_radius { |
66 | margin: 26rpx 30rx; | 68 | margin: 26rpx 30rx; |
67 | background: #fff; | 69 | background: #fff; |
68 | border-radius: 5px; | 70 | border-radius: 5px; |
69 | - border:1px solid rgba(228,231,240,1); | 71 | + border: 1px solid rgba(228, 231, 240, 1); |
70 | height: 84rpx; | 72 | height: 84rpx; |
71 | } | 73 | } |
72 | 74 | ||
73 | .text_white_34 { | 75 | .text_white_34 { |
74 | font-family: PingFangSC-Regular; | 76 | font-family: PingFangSC-Regular; |
75 | - font-size: 17px; | ||
76 | - color: #FFFFFF; | 77 | + font-size: 34rpx; |
78 | + color: #fff; | ||
77 | text-align: center; | 79 | text-align: center; |
78 | line-height: 42px; | 80 | line-height: 42px; |
79 | } | 81 | } |
80 | 82 | ||
81 | .text_blue_34 { | 83 | .text_blue_34 { |
82 | font-family: PingFangSC-Regular; | 84 | font-family: PingFangSC-Regular; |
83 | - font-size: 17px; | 85 | + font-size: 34rpx; |
84 | color: #357aeb; | 86 | color: #357aeb; |
85 | text-align: center; | 87 | text-align: center; |
86 | line-height: 42px; | 88 | line-height: 42px; |
87 | } | 89 | } |
90 | + | ||
91 | +.text_gray3_34 { | ||
92 | + font-family: PingFangSC-Regular; | ||
93 | + font-size: 34rpx; | ||
94 | + color: #333; | ||
95 | +} | ||
96 | + | ||
97 | +.text_gray3_32 { | ||
98 | + font-family: PingFangSC-Regular; | ||
99 | + font-size: 32rpx; | ||
100 | + color: #333; | ||
101 | +} | ||
102 | + | ||
103 | +.text_gray3_28 { | ||
104 | + font-family: PingFangSC-Regular; | ||
105 | + font-size: 28rpx; | ||
106 | + color: #333; | ||
107 | +} | ||
108 | + | ||
109 | +.icon_choosed { | ||
110 | + width: 24rpx; | ||
111 | + height: 26rpx; | ||
112 | + margin-top: 10rpx; | ||
113 | + margin-right: 20rpx; | ||
114 | + float: right; | ||
115 | +} | ||
116 | + | ||
117 | +.view_gray_bg { | ||
118 | + margin: 20rpx 0; | ||
119 | + width: 100%; | ||
120 | + background: rgba(247, 245, 246, 1); | ||
121 | + opacity: 0.5; | ||
122 | +} | ||
123 | + | ||
124 | +.text_gray9_26 { | ||
125 | + font-size: 26rpx; | ||
126 | + color: #999; | ||
127 | + font-family: PingFangSC-Regular, PingFang SC; | ||
128 | + line-height: 40rpx; | ||
129 | +} | ||
130 | + | ||
131 | +/* 遮罩层 */ | ||
132 | + | ||
133 | +.mask { | ||
134 | + width: 100%; | ||
135 | + height: 100%; | ||
136 | + position: fixed; | ||
137 | + top: 0; | ||
138 | + left: 0; | ||
139 | + background: #000; | ||
140 | + opacity: 0.7; | ||
141 | + z-index: 10; | ||
142 | +} | ||
143 | + | ||
144 | +.modal_lg { | ||
145 | + width: 80%; | ||
146 | + position: fixed; | ||
147 | + left: 0; | ||
148 | + right: 0; | ||
149 | + margin: 0 auto; | ||
150 | + background-color: #fff; | ||
151 | + border-radius: 7px; | ||
152 | + display: flex; | ||
153 | + flex-direction: column; | ||
154 | + align-items: center; | ||
155 | + top: 160rpx; | ||
156 | + z-index: 10; | ||
157 | + padding: 40rpx; | ||
158 | +} |
请
注册
或
登录
后发表评论