freeIncomeDetail.wxml
2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<view >
<view style="background:#fff;padding:0 30rpx;">
<text class="text_gray7_34">免税收入合计</text>
<text class="text_black3_34 float_right">{{3000}}</text>
</view>
<view wx:for="{{infoList}}" style="background:#fff;margin-top:20rpx">
<picker style="height:104rpx;padding-left: 30rpx;background-color:#fff" mode="selector" bindchange="bindProjectChange" 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="bindDeductContent" 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="bindDeductProperty" 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 style="height:104rpx;padding:0 30rpx;background-color:#fff;margin-bottom:1rpx">
<text class="text_gray7_34">免税收入金额</text>
<input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='name' type="digit" bindblur="bindIncome" value="{{}}"></input>
</view>
</view>
<view style="background:#fff;margin-top:20rpx;height:104rpx;display:flex;align-items:center;justify-content:center;margin-bottom:84rpx" bindtap="addItem">
<image style="width:28rpx;height:28rpx;margin-right:16rpx" src="/images/add_extra.png"></image>
<text style="font-size:28rpx;color:#4986fe">继续添加</text>
</view>
<view class="btn_bottom" bindtap="goSubmit">
<button class="btn_bottom" >保存</button>
</view>
</view>