home.wxml 9.9 KB
<!--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 wx:if="{{year>2020}}" class="float_right">
        <image class="arrow_wrap" src="/images/arrow_down.png"></image>
      </view>
    </view>
    <scroll-view style="padding-bottom: 360rpx;">
      <view style="background:#fff;padding:30rpx 30rpx 50rpx 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;margin-top:6rpx" src="/images/warn_yellow.png"></image>
        </view>
        <view wx:if="{{declaring_unit_status=='4'}}">
          <text class="text_gray6_28">请于 </text>
          <text class="text_yellow_28">  {{declare_end_date}}前 </text>
          <text class="text_gray6_28">确认是否在本单位进行汇算清缴,否则默认为您在其他单位申报或自行申报。 </text>
        </view>
        <view wx:elif="{{declaring_unit_status=='5'}}">
          <text class="text_gray6_28">您已选择自行申报,可继续查看在本单位的个税申报记录 </text>
        </view>
        <view wx:else>
          <text class="text_gray6_28">您选择在 {{declaring_unit}} 完成2019年度的个人综合所得汇算清缴。 </text>
        </view>
      </view>

      <view wx:if="{{declaring_unit_status!='4'&&declaring_unit_status!='5'&&!show_other_unit_view}}" style="background:#fff;padding:30rpx 30rpx 50rpx 30rpx;">
        <text class="text_black_bold">{{declare_status=='1'?'汇算清缴申报中…':'汇算清缴申报完成!'}}</text>
        <view wx:if="{{declare_text_extra.length>0&&refund_status!='0'}}" style="display: flex;margin:20rpx 0">
          <image style="width:28rpx;height:28rpx;margin-right:12rpx;margin-top:6rpx" src="/images/warn_yellow.png"></image>
          <text class="text_gray6_28">{{declare_text_extra}} </text>
        </view>
        <view class="divide_line_f5f5f5"></view>
        <view style="margin-top:20rpx">
          <text class="text_gray6_28">收入总额:</text>
          <text class="text_gray3_28 float_right" style="line-height:50rpx">¥{{payinfo.total_salary}}</text>
        </view>
        <view class="view_gray_bg" style="padding:16rpx 20rpx;flex-direction: column">
          <view class="text_gray9_26">其中本单位收入额:{{payinfo.total_salary_on}}</view>
          <text class="text_gray9_26">其中其他单位收入额:{{payinfo.total_salary_else}}</text>
        </view>
        <view style="margin:20rpx 0">
          <text class="text_gray6_28">累计应纳税额:</text>
          <text class="text_gray3_28 float_right" style="line-height:50rpx">¥{{payinfo.accumulated_payable_tax}}</text>
        </view>
        <view class="divide_line_f5f5f5"></view>
        <view style="margin:20rpx 0">
          <text class="text_gray6_28">已缴费税额:</text>
          <text class="text_gray3_28 float_right" style="line-height:50rpx">¥{{payinfo.accumulated_prepay_tax}}</text>
        </view>
        <view class="divide_line_f5f5f5"></view>
        <view style="margin:20rpx 0">
          <text class="text_black_bold">{{uniqual_title01}}:</text>
          <text wx:if="{{declare_status=='1'}}" class="text_gray3_28 float_right" style="line-height:50rpx">计算中</text>
          <text wx:else class="text_orange_28 float_right" style="line-height:50rpx">¥{{new_refund_tax}}</text>
          <view wx:if="{{uniqual_content01=='已放弃'}}" class="light_gray_bg">
            <text style="font-size:11px;color:rgba(0,0,0,0.35);margin: 0 auto">{{uniqual_content01}}</text>
          </view>
          <view wx:elif="{{uniqual_content01=='退税失败'}}" class="light_red_bg">
            <text style="font-size:11px;color:#fff;margin: 0 auto">{{uniqual_content01}}</text>
          </view>
          <view wx:else class="light_yellow_bg">
            <text style="font-size:11px;color:#fff;margin: 0 auto">{{uniqual_content01}}</text>
          </view>
        </view>
        <view class="divide_line_f5f5f5"></view>
        <view class="text_blue_28 float_right" style="line-height:50rpx;" bindtap="finalpay_detail">查看详情</view>
      </view>
    </scroll-view>
    <view wx:if="{{declaring_unit_status=='4'&&!show_other_unit_view}}" style="width:100%;height:300rpx;position: fixed;bottom: 0;background-color:#fff">
      <view style="display: flex;justify-content: center;margin-top:20rpx">
        <text class="text_gray6_28">距离确认是否在本单位进行汇算清缴时间还有  </text>
        <text class="text_yellow_28"> {{declare_end_days}} </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 wx:elif="{{declaring_unit_status=='5'}}" style="width:100%;height:260rpx;position: fixed;bottom: 0;background-color:#fff">
      <view bindtap="declareBySelf" class="btn_blue_radius" style="margin:20rpx 30rpx ">
        <view class="text_white_34">查看自行申报方式</view>
      </view>
      <view bindtap="godeclareHistory" class="btn_white_radius" style="margin:0rpx 30rpx ">
        <view class="text_blue_34">查看个税申报记录</view>
      </view>
    </view>

    <view wx:elif="{{declaring_unit_status=='4'&&show_other_unit_view}}" style="width:100%;height:300rpx;position: fixed;bottom: 0;background-color:#fff">
      <view style="display: flex;justify-content: center;margin-top:20rpx">
        <text class="text_gray6_28">距离确认填报其他单位个税申报明细时间还有  </text>
        <text class="text_yellow_28"> {{declare_end_days}} </text>
        <text class="text_gray6_28">天</text>
      </view>
      <view bindtap="noOtherUnitInfo" class="btn_blue_radius" style="margin:20rpx 30rpx ">
        <view class="text_white_34">没有其他单位的收入个税</view>
      </view>
      <view bindtap="otherUnitInfo" class="btn_white_radius" style="margin:0rpx 30rpx ">
        <view class="text_blue_34">有其他单位的收入个税</view>
      </view>
    </view>

    <view wx:elif="{{refund_status=='1'}}" style="width:100%;height:300rpx;position: fixed;bottom: 0;background-color:#fff">
      <view style="display: flex;justify-content: center;margin-top:20rpx">
        <text class="text_gray6_28">距离确认是否申请退税时间还有  </text>
        <text class="text_yellow_28"> {{declare_end_days}} </text>
        <text class="text_gray6_28">天</text>
      </view>
      <view bindtap="doRefund" class="btn_blue_radius" style="margin:20rpx 30rpx ">
        <view class="text_white_34">申请退税</view>
      </view>
      <view bindtap="doNotRefund" class="btn_white_radius" style="margin:0rpx 30rpx ">
        <view class="text_blue_34">放弃退税</view>
      </view>
    </view>

    <view wx:elif="{{declaring_unit_status!='5'&&(refund_status=='2'||refund_status=='3'||refund_status=='4')}}" style="width:100%;height:144rpx;position: fixed;bottom: 0;background-color:#fff">
      <view bindtap="refundDetail" class="btn_white_radius" style="margin:30rpx ">
        <view class="text_blue_34">查看退税详情</view>
      </view>
    </view>

    <view class="mask" wx:if="{{showModal_selfDeclare}}"></view>
    <view class='modal_lg' style='' wx:if="{{showModal_selfDeclare}}">
      <text class='text_black_bold'>个人如何自行完成汇算清缴申报?</text>
      <text class='text_gray6_28' style="margin-top:30rpx">为便利纳税人,税务机关为纳税人提供高效、快捷的网络办税渠道。纳税人可优先通过网上税务局(包括手机个人所得税app)办理年度汇算,税务机关将按规定为纳税人提供申报表预填服务;不方便通过上述方式办理的,也可以通过邮寄方式或到办税服务厅办理。</text>
      <text class='text_gray6_28' style="margin-top:30rpx">选择邮寄申报的,纳税人需将申报表寄送至任职受雇单位(没有任职受雇单位的,为户籍或者经常居住地)所在省、自治区、直辖区、计划单列市税务局公告指定的税务机关。</text>
      <view style="margin-top:30rpx">
        <text class='text_gray6_28'> 更详细内容请查看</text>
        <text class='text_blue_28' bindtap="skipH5_02">《国家税务局关于办理2019年度个人所得税综合所得汇算清缴事项的公告》</text>
      </view>
      <view class="btn_blue_radius" style="width:100%;margin-top:40rpx;text-align: center;" bindtap="selfdeclare_close">
        <text class="text_white_34" style="text-align: center;">我知道了</text>
      </view>

    </view>
  </view>

  <view wx:if="{{showUnit&&unitInfo.length>0}}" style="background-color:#fff">
    <view class="text_gray3_34" style="padding:30rpx">选择申报单位</view>
    <view class="divide_line"></view>
    <view wx:for="{{unitInfo}}" style="height:104rpx;margin-left:50rpx;margin-right:30rpx" bindtap="unitPick" id="{{item.declaring_unit}}~{{item.declaring_unit_id}}">
      <text class="text_gray3_32" style="line-height:104rpx">{{item.declaring_unit}}</text>
      <image class="icon_choosed" hidden="true" src="/images/icon_chat_choosed.png"></image>
      <view class="divide_line"></view>
    </view>
  </view>
</view>