1
|
-<!--pages/main/finalpay/donationDetail/donationDetail.wxml-->
|
|
|
2
|
-<text>pages/main/finalpay/donationDetail/donationDetail.wxml</text> |
1
|
+
|
|
|
2
|
+<view class="page">
|
|
|
3
|
+ <view style="background:#fff;padding:0 30rpx;">
|
|
|
4
|
+ <text class="text_gray7_34">准予扣除的捐赠额合计</text>
|
|
|
5
|
+ <text class="text_black3_34 float_right">{{300090}}</text>
|
|
|
6
|
+ </view>
|
|
|
7
|
+
|
|
|
8
|
+ <view wx:for="{{infoList}}" style="background:#fff;margin-top:20rpx">
|
|
|
9
|
+ <view style="height:104rpx;padding:0 30rpx;background-color:#fff;margin-bottom:1rpx;display: flex;">
|
|
|
10
|
+ <view style="font-size: 32rpx;color: #777777;text-align: center;width:320rpx;display:flex;align-items: center;">受赠单位纳税人识别号(统一社会信用代码)</view>
|
|
|
11
|
+ <input style='text-align:right;color:#000;font-size: 30rpx;height:104rpx;width:366rpx' placeholder='请输入' name='name' maxlength="20" bindblur="" value="{{}}"></input>
|
|
|
12
|
+ </view>
|
|
|
13
|
+ <view class="divide_line_30"></view>
|
|
|
14
|
+ <view style="height:104rpx;padding:0 30rpx;background-color:#fff;margin-bottom:1rpx">
|
|
|
15
|
+ <text class="text_gray7_34">受赠单位名称</text>
|
|
|
16
|
+ <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='name' bindblur="" value="{{}}"></input>
|
|
|
17
|
+ </view>
|
|
|
18
|
+ <view class="divide_line_30"></view>
|
|
|
19
|
+ <view style="height:104rpx;padding:0 30rpx;background-color:#fff;margin-bottom:1rpx">
|
|
|
20
|
+ <text class="text_gray7_34">报捐赠凭证号</text>
|
|
|
21
|
+ <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='name' bindblur="" value="{{}}"></input>
|
|
|
22
|
+ </view>
|
|
|
23
|
+ <view class="divide_line_30"></view>
|
|
|
24
|
+ <view style="height:104rpx;padding:0 30rpx;background-color:#fff;margin-bottom:1rpx">
|
|
|
25
|
+ <text class="text_gray7_34">捐赠年度</text>
|
|
|
26
|
+ <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='name' bindblur="" value="{{}}"></input>
|
|
|
27
|
+ </view>
|
|
|
28
|
+ <view class="divide_line_30"></view>
|
|
|
29
|
+ <view style="height:104rpx;padding:0 30rpx;background-color:#fff;margin-bottom:1rpx">
|
|
|
30
|
+ <text class="text_gray7_34">捐赠金额</text>
|
|
|
31
|
+ <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='name' type="digit" bindblur="bindIncome" value="{{}}"></input>
|
|
|
32
|
+ </view>
|
|
|
33
|
+ <view class="divide_line_30"></view>
|
|
|
34
|
+ <picker style="height:104rpx;padding-left: 30rpx;background-color:#fff" mode="selector" bindchange="" range="{{deductPick}}">
|
|
|
35
|
+ <text class="text_gray7_34">扣除比例</text>
|
|
|
36
|
+ <image class='arrow_wrap float_right' src='/images/arrow_right.png'></image>
|
|
|
37
|
+ <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请选择' name='' value="{{}}"></input>
|
|
|
38
|
+ </picker>
|
|
|
39
|
+ <view class="divide_line_30"></view>
|
|
|
40
|
+ <view style="height:104rpx;padding:0 30rpx;background-color:#fff;margin-bottom:1rpx">
|
|
|
41
|
+ <text class="text_gray7_34">备注</text>
|
|
|
42
|
+ <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='name' bindblur="" value="{{}}"></input>
|
|
|
43
|
+ </view>
|
|
|
44
|
+ </view>
|
|
|
45
|
+
|
|
|
46
|
+ <view style="background:#fff;margin-top:20rpx;height:104rpx;display:flex;align-items:center;justify-content:center;padding-bottom:84rpx" bindtap="addItem">
|
|
|
47
|
+ <image style="width:28rpx;height:28rpx;margin-right:16rpx" src="/images/add_extra.png"></image>
|
|
|
48
|
+ <text style="font-size:28rpx;color:#4986fe">继续添加</text>
|
|
|
49
|
+ </view>
|
|
|
50
|
+ <view class="btn_bottom" bindtap="goSubmit">
|
|
|
51
|
+ <button class="btn_bottom">保存</button>
|
|
|
52
|
+ </view>
|
|
|
53
|
+</view> |