home.wxml
2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!--pages/main/finalpay/home.wxml-->
<view class="page">
<view wx:if="{{!showUnit}}">
<view style="background:#fff;padding:28rpx" bindtap="yearPick">
<text class="text_black_bold">2019年度个人综合所得汇算清缴</text>
<view class="float_right">
<image class="arrow_wrap" src="/images/arrow_down.png"></image>
</view>
</view>
<view style="background:#fff;padding:30rpx 30rpx 60rpx 30rpx;margin-top:20rpx">
<text class="text_gray3_26">了解汇算清缴具体内容,请阅读 </text>
<text class="text_blue_26" bindtap="skipH5_01"> 《2019年度汇算清缴事项公告》 </text>
<text class="text_blue_26" bindtap="skipH5_02"> 《国家税务总局办理2019年度个人所得税综合所得汇算清缴事项的公告 》</text>
<text class="text_blue_26"> 的解读 </text>
</view>
<view style="background:#fff9f0;padding:24rpx;display: flex;">
<view style="margin-right:12rpx">
<image style="width:28rpx;height:28rpx;" src="/images/warn_yellow.png"></image>
</view>
<view>
<text class="text_gray6_28">请于 </text>
<text class="text_yellow_28"> 2020年10月1日前 </text>
<text class="text_gray6_28">确认是否在本单位进行汇算清缴,否则默认为您在其他单位申报或自行申报。 </text>
</view>
<view hidden="true">
<text class="text_gray6_28">您将在 北京小爱智能科技有限公司 完成2019年度的个人综合所得汇算清缴。 </text>
</view>
</view>
<view hidden="true" style="background:#fff;">
<view style="padding:30rpx;">
<text class="text_black_bold">汇算清缴</text>
<text class="text_blue_28 float_right" style="line-height:50rpx" bindtap="finalpay_detail">查看详情</text>
</view>
</view>
<view style="width:100%;height:300rpx;position: fixed;bottom: 0;">
<view style="display: flex;justify-content: center;">
<text class="text_gray6_28">距离确认是否在本单位进行汇算清缴时间还有 </text>
<text class="text_yellow_28"> 28 </text>
<text class="text_gray6_28">天</text>
</view>
<view bindtap="declareNotHere" class="btn_blue_radius" style="margin:20rpx 30rpx ">
<view class="text_white_34">不在本单位申报</view>
</view>
<view bindtap="declareHere" class="btn_white_radius" style="margin:0rpx 30rpx ">
<view class="text_blue_34">在本单位申报</view>
</view>
</view>
</view>
<view wx:elif="{{unitInfo.length>0}}" style="">
<view wx:for="{{unitInfo}}">
<text>{{item.declaring_unit}}</text>
</view>
</view>
</view>