refundInfo.wxml 3.4 KB
<!--pages/main/finalpay/refundInfo/refundInfo.wxml-->
<view class="page">
  <form style="width:100%;" bindsubmit='formSubmit'>
    <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' value="{{name}}"></input>
    </view>
    <view class='divide_line_30'></view>
    <view style="height:104rpx;padding:0 30rpx;background-color:#fff">
      <text class="text_gray7_34" style="line-height:104rpx">银行卡号</text>
      <image class='image_camera' src='/images/camera.png' bindtap='bindbank'></image>
      <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='bank_card_no' value="{{bank_card_no}}" maxlength='19' type='number'></input>
    </view>
    <view class='divide_line_30'></view>
    <view style="height:104rpx;padding:0 30rpx;background-color:#fff">
      <text class="text_gray7_34" style="line-height:104rpx">开户银行名称</text>
      <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='bank' value="{{bank}}"></input>
    </view>
    <view class='divide_line_30'></view>
    <!-- <view style="height:104rpx;padding:0 30rpx;background-color:#fff">
      <text class="text_gray7_34" style="line-height:104rpx">开户银行省份</text>
      <input class='input_wrap' style='text-align: right;color:#000;' placeholder='请输入' name='bank_card_province' value="{{bank_card_province}}"></input>
    </view> -->

    <picker style="height:104rpx;padding:0 30rpx;background-color:#fff" mode="selector" bindchange="bindRegionChange" range="{{province}}" >
      <text class="text_gray7_34">开户银行省份</text>
      <view wx:if="{{bank_card_province.length>0}}" class="input_wrap rigion_choosed">
        {{bank_card_province}}
      </view>
      <view wx:else class="input_wrap rigion_notchoosed}}">
        请选择 </view>
    </picker>

    <view class="btn_bottom">
      <button class="btn_bottom" formType="submit">保存</button>
    </view>
  </form>
  <view class="mask" wx:if="{{show_modal}}"></view>
  <view class='modal_lg' style='' wx:if="{{show_modal}}">
    <!-- <view style='width:100%;display:flex;flex-direction:column;max-height:560rpx;overflow-y: scroll;'></view> -->
    <view class="text_title"> 确认提交吗?</view>
    <view style="margin:2rpx 40rpx">
      <text class="text_gray6_28">姓名:</text>
      <text class="text_gray6_28 float_right">{{name}}</text>
    </view>
    <view style="margin:2rpx 40rpx">
      <text class="text_gray6_28">银行卡号:</text>
      <text class="text_gray6_28 float_right">{{bank_card_no}}</text>
    </view>
    <view style="margin:2rpx 40rpx">
      <text class="text_gray6_28">开户行名称:</text>
      <text class="text_gray6_28 float_right">{{bank}}</text>
    </view>
    <view style="margin:2rpx 40rpx">
      <text class="text_gray6_28">开户行省份:</text>
      <text class="text_gray6_28 float_right">{{bank_card_province}}</text>
    </view>
    <view class='divide_line_f5f5f5' style="margin-top:30rpx"></view>

    <view style='width:100%;display: flex;'>
      <text class='text_cancel' bindtap='commitCancel'>取消</text>
      <view style='width:1px;background:#F5F5F5;'></view>
      <text class='text_confirm' bindtap='commitConfirm'>确认</text>
    </view>

  </view>
</view>