historylist.wxml
3.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
<!--pages/main/finalpayment/historylist/historylist.wxml-->
<view class='page'>
<picker mode="date" fields="month" start="1970-01" end="2100-01" bindchange="datePickerChange" style='background:#fff'>
<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 style='height:20rpx;width:100%;background:#f5f5f5'></view>
<view class='view_bg_wrap' style='height:110rpx;background:#fff'>
<view style='flex:2;text-align:center;'>
<text style='font-size: 28rpx;color: #333'>月份</text>
</view>
<view style='flex:3;display:flex;flex-direction:column;padding-top:12rpx'>
<text style='font-size: 28rpx;color: #333;'>个人所得</text>
<text style='font-size: 24rpx;color: #999;'>(元)</text>
</view>
<view style='flex:3;display:flex;flex-direction:column;padding-top:12rpx'>
<text style='font-size: 28rpx;color: #333;'>应纳税所得额</text>
<text style='font-size: 24rpx;color: #999;'>(元)</text>
</view>
<view style='flex:3.5;display:flex;flex-direction:column;padding-top:12rpx'>
<text style='font-size: 28rpx;color: #333;'>应纳税额</text>
<text style='font-size: 24rpx;color: #999;'>(元)</text>
</view>
</view>
<view wx:for="{{datas}}" style='background:#fff'>
<view class='divide_line_f5f5f5' style='margin:20rpx 0'></view>
<view class='view_bg_wrap' bindtap='godetail' id='index'>
<view style='flex:2;text-align:center;'>
<text style='font-size: 28rpx;color: #999'>{{index+1}}月</text>
</view>
<view style='flex:3;display:flex;flex-direction:column;padding-top:12rpx'>
<text style='font-size: 24rpx;color: #999;'>工资薪金</text>
<text style='font-size: 28rpx;color: #999;'>30000.00</text>
<text style='font-size: 24rpx;color: #999;margin-top:8rpx'>薪酬所得</text>
<text style='font-size: 28rpx;color: #999;'>29100.00</text>
</view>
<view style='flex:3;display:flex;flex-direction:column;padding-top:12rpx'>
<text style='font-size: 28rpx;color: #999;'>500.00</text>
</view>
<view style='flex:2.7;display:flex;flex-direction:column;padding-top:12rpx'>
<text style='font-size: 28rpx;color: #999;'>198.00</text>
</view>
<view style='flex:0.8;'>
<image style='width: 40rpx;height: 40rpx;margin-top:12rpx' src='/images/arrow_right.png'></image>
</view>
</view>
</view>
<view style='height:2rpx;width:100%;background:#f5f5f5;margin-top:20rpx'></view>
<view class='view_bg_wrap' style='height:90rpx;background:#fff;padding-bottom:100rpx'>
<view style='flex:2;padding-top:12rpx;text-align:center'>
<text style='font-size: 28rpx;color: #333'>总计</text>
</view>
<view style='flex:3;padding-top:12rpx'>
<text style='font-size: 28rpx;color: #333;'>19002.00</text>
</view>
<view style='flex:3;padding-top:12rpx'>
<text style='font-size: 28rpx;color: #333;'>3988.00</text>
</view>
<view style='flex:3.5;padding-top:12rpx'>
<text style='font-size: 28rpx;color: #333;'>1094.00</text>
</view>
</view>
</view>