home.wxml
5.1 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!--pages/main/advancepayment/home.wxml-->
<view class='page'>
<scroll-view style='margin-bottom:40rpx'>
<view style='padding:30rpx;background:#ffffff'>
<picker mode="date" fields="month" start="1970-01" end="2100-01" bindchange="datePickerChange">
<view>
<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='padding:30rpx 0'>
<text class='text_666_30 float_left'>累计工资收入</text>
<text class='text_333_30_bold float_right'>400000.00</text>
</view>
<view class='divide_line_f5f5f5' style='margin-top:30rpx'></view>
<view style='padding:30rpx 0'>
<text class='text_666_30 float_left'>累计免税收入</text>
<text class='text_333_30_bold float_right'>40.00</text>
</view>
<view class='divide_line_f5f5f5' style='margin-top:30rpx'></view>
<view style='padding:30rpx 0'>
<text class='text_666_30 float_left'>累计基本减除费用</text>
<text class='text_333_30_bold float_right'>8000.00</text>
</view>
<view class='divide_line_f5f5f5' style='margin-top:30rpx'></view>
<view style='padding:30rpx 0'>
<text class='text_666_30 float_left'>累计专项扣除额</text>
<text class='text_333_30_bold float_right'>84783.00</text>
</view>
<view class='divide_line_f5f5f5' style='margin-top:30rpx'></view>
<view style='padding:30rpx 0'>
<text class='text_666_30 float_left'>累计专项附加扣除额</text>
<text class='text_333_30_bold float_right'>32200.00</text>
</view>
<view class='divide_line_f5f5f5' style='margin-top:30rpx'></view>
<view style='padding:30rpx 0'>
<text class='text_666_30 float_left'>累计其他扣除额</text>
<text class='text_333_30_bold float_right'>0.00</text>
</view>
<view class='divide_line_f5f5f5' style='margin-top:30rpx'></view>
<view style='padding:30rpx 0'>
<text class='text_666_30 float_left'>累计预缴应纳税所得额</text>
<text class='text_333_30_bold float_right'>32983000.00</text>
</view>
</view>
<view style='margin:30rpx;positive:relative;width:92%;height:312rpx'>
<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: 44rpx;'>
<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 class='view_bg_wrap' style='margin-top: 180rpx;'>
<view style='flex-grow: 1;text-align:center;display: flex;flex-direction: column;'>
<text class='text_num_wrap'>30.8%</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'>19106.91</text>
<text class='text_text_wrap'>速算扣除数</text>
</view>
</view>
</view>
</view>
<view style='padding-left:30rpx;background:#ffffff'>
<image class='icon_wrap' src="/images/rectangle_icon.png"></image>
<text style='padding-left:20rpx' class='text_gray_32'>工资明细</text>
</view>
<view style='margin-top:2rpx;background:#ffffff;padding-bottom:30rpx'>
<view style='padding:30rpx'>
<text class='text_wrap_left'>公司名称</text>
<text class='text_wrap_right'>400000.00</text>
</view>
<view style='padding:30rpx'>
<text class='text_wrap_left'>计薪时间</text>
<text class='text_wrap_right'>400000.00</text>
</view>
<view style='padding:30rpx'>
<text class='text_wrap_left'>发薪时间</text>
<text class='text_wrap_right'>400000.00</text>
</view>
<view style='padding:30rpx'>
<text class='text_wrap_left'>实发工资</text>
<text class='text_wrap_right'>400000.00</text>
</view>
</view>
</scroll-view>
</view>