godetail.wxml 1.3 KB
<!--pages/main/addtionalreduce/godetail/godetail.wxml-->
<view class='page' style='margin-bottom:30rpx'>
  <view class='text_gray_30' style='padding:30rpx'>您在“北京小爱科技”申报的专项附加扣除项已添加完成,请完善各项的具体申报内容。</view>
  <view style='padding-left:30rpx;padding-right:30rpx'>
    <image class='icon_wrap' src="/images/rectangle_icon.png"></image>
    <text style='padding-left:20rpx' class='text_gray_32'>北京小爱科技公司</text>
    <view class='divide_line_f5f5f5' style='margin-top:30rpx' ></view>
  </view>
  <view wx:if="true">
    <view wx:for="{{datas}}">
      <view class='card_rectangle_bg_column' style='padding:30rpx;margin-top:30rpx'>
        <text class='text_black_32'>{{datas[index]}}</text>
        <view style='margin:20rpx 0'>
                <text class='text_gray_22 float_left'>已抵扣额度:4890.00</text>
                <text class='text_gray_22 float_right'>剩余可抵扣额度:12810.00</text>
              </view>
              <view class='divide_line_f5f5f5'></view>
              <view style='padding:20rpx 0' bindtap='lookandadd' id='{{index}}'>
                <text class='text_blue_28'>查看并调整</text>
                <image class='arrow_img_wrap' src='/images/arrow_right.png'></image>
              </view>
      </view>
    </view>
  </view>
</view>