home.wxml 2.6 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 class="float_right">
        <image class="arrow_wrap" src="/images/arrow_down.png"></image>
      </view>
    </view>

    <view style="background:#fff;padding:30rpx 30rpx 60rpx 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;" src="/images/warn_yellow.png"></image>
      </view>
      <view>
        <text class="text_gray6_28">请于 </text>
        <text class="text_yellow_28">  2020年10月1日前 </text>
        <text class="text_gray6_28">确认是否在本单位进行汇算清缴,否则默认为您在其他单位申报或自行申报。 </text>
      </view>
      <view hidden="true">
        <text class="text_gray6_28">您将在 北京小爱智能科技有限公司 完成2019年度的个人综合所得汇算清缴。 </text>
      </view>
    </view>

    <view hidden="true" style="background:#fff;">
      <view style="padding:30rpx;">
        <text class="text_black_bold">汇算清缴</text>
        <text class="text_blue_28 float_right" style="line-height:50rpx" bindtap="finalpay_detail">查看详情</text>
      </view>
    </view>

    <view style="width:100%;height:300rpx;position: fixed;bottom: 0;">
      <view style="display: flex;justify-content: center;">
        <text class="text_gray6_28">距离确认是否在本单位进行汇算清缴时间还有  </text>
        <text class="text_yellow_28"> 28 </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>
  <view wx:elif="{{unitInfo.length>0}}" style="">
    <view wx:for="{{unitInfo}}">
      <text>{{item.declaring_unit}}</text>
    </view>
  </view>
</view>