home.wxml
4.3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!--pages/main/finalpayment/home.wxml-->
<view class='page'>
<scroll-view style=''>
<view style='background:#fff'>
<picker mode="date" fields="year" start="1970" end="2100" bindchange="datePickerChange">
<view style='padding:30rpx;'>
<text class='text_gray_32'>本人年度缴税情况</text>
<view class='float_right'>
<text class='text_gray_32'>{{choosed_date}}</text>
<image class='arrow_wrap' src='/images/arrow_right.png'></image>
</view>
</view>
</picker>
<view class='divide_line_f5f5f5'></view>
<view style='margin: 30rpx;positive:relative;width:92%;height:454rpx'>
<image class=' payment_img_bg ' src='/images/payment_bg.png ' style='position:absolute;z-index: 1;'></image>
<view>
<view class='view_bg_wrap' style='margin-top: 48rpx;'>
<view style='flex: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_num_wrap'>261609.90</text>
<text class='text_text_wrap'>累计收入额</text>
</view>
<view style='width:2rpx;height:74rpx;background:#ffffff;'></view>
<view style='flex: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_num_wrap'>19106.91</text>
<text class='text_text_wrap'>累计缴纳个税</text>
</view>
</view>
<view class='view_bg_wrap' style='margin-top: 206rpx;'>
<view style='flex-grow: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_num_wrap'>3838.9</text>
<text class='text_text_wrap'>累计专项扣除</text>
</view>
<view style='width:2rpx;height:74rpx;background:#ffffff;'></view>
<view style='flex-grow: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_num_wrap'>10398.01</text>
<text class='text_text_wrap'>累计专项附加扣除</text>
</view>
<view style='width:2rpx;height:74rpx;background:#ffffff;'></view>
<view style='flex-grow: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_num_wrap'>133.09</text>
<text class='text_text_wrap'>汇算补差</text>
</view>
</view>
<view style='position: absolute;z-index: 2;display: flex;margin-top:330rpx;width:92%;justify-content: center;background:#fff;height:84rpx' bindtap='gohistory'>
<text class='text_blue_wrap_28' style='line-height:84rpx'>查看历史缴税信息</text>
</view>
</view>
</view>
<view class='divide_line_f5f5f5'></view>
<view style='padding-left:30rpx;background-color:#fff;height:100rpx;'>
<image class='icon_wrap' src="/images/rectangle_icon.png"></image>
<text style='padding-left:20rpx;line-height:100rpx' class='text_gray_32'>专项附加扣除概览</text>
</view>
</view>
<view class="container_wrap" style='background:#fff'>
<canvas canvas-id="pieCanvas" class="canvas" style="height:330px"></canvas>
</view>
<view class='divide_line' style='margin-top:50rpx'></view>
<view style='height:180rpx;display: flex;flex-direction: row;align-items:center;background-color:#fff'>
<view style='flex: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_333_bold_36'>3838.9</text>
<text class='text_333_22'>年度可扣除额度</text>
</view>
<view style='width:2rpx;height:84rpx;background:#E5E5E5;'></view>
<view style='flex: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_333_bold_36'>10398.01</text>
<text class='text_333_22'>年度已扣除额度</text>
</view>
<view style='width:2rpx;height:84rpx;background:#E5E5E5;'></view>
<view style='flex: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_333_bold_36'>133.09</text>
<text class='text_333_22'>剩余可抵扣额度</text>
</view>
</view>
<view style='margin-top:50rpx;background:#357aeb' bindtap='addinfo'>
<button class="btn_bottom" >录入信息</button>
</view>
</scroll-view>
</view>