historylist.wxml 3.2 KB
<!--pages/main/finalpayment/historylist/historylist.wxml-->
<view class='page'>
  <picker mode="date" fields="year" start="1970" end="2100" 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 style='height:20rpx;background:#FCFCFC'></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;'>10000.00</text>
        <text style='font-size: 24rpx;color: #999;margin-top:8rpx'>薪酬所得</text>
        <text style='font-size: 28rpx;color: #999;'>9100.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:20rpx;width:100%;background:#f5f5f5;'></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>