freeIncomeDetail.wxml 1.8 KB

<view class="page">
  <view style="background:#fff;padding:0 30rpx;">
    <text class="text_gray7_34">免税收入合计</text>
    <text class="text_black3_34 float_right">{{3000}}</text>
  </view>

  <view style="background:#fff;margin-top:20rpx" wx:for="{{info}}">
    <picker style="height:104rpx;padding-left: 30rpx;background-color:#fff" mode="selector" bindchange="bindRegionChange" range="{{project}}" >
      <text class="text_gray7_34">所得项目</text>
      <image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
       <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='' value="{{}}"></input>
    </picker>
    <view class="divide_line_30"></view>
    <picker style="height:104rpx;padding-left: 30rpx;background-color:#fff" mode="selector" bindchange="bindRegionChange" range="{{deductcontent}}" >
      <text class="text_gray7_34">减免事项名称</text>
      <image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
       <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='' value="{{}}"></input>
    </picker>
    <view class="divide_line_30"></view>
    <picker style="height:104rpx;padding-left: 30rpx;background-color:#fff" mode="selector" bindchange="bindRegionChange" range="{{deductproperty}}" >
      <text class="text_gray7_34">减免性质名称</text>
      <image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
       <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请选择' name='' value="{{}}"></input>
    </picker>
    <view class="divide_line_30"></view>
  </view>
  <view class="btn_bottom">
    <button class="btn_bottom" formType="submit">保存</button>
  </view>
</view>