C端小程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

scanPay.wxml 3.2 KiB

il y a 1 an
il y a 6 ans
il y a 6 ans
il y a 6 ans
il y a 1 an
il y a 6 ans
il y a 6 ans
il y a 1 an
il y a 1 an
il y a 6 ans
il y a 6 ans
il y a 1 an
il y a 6 ans
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <navbar home back text="付款"></navbar>
  2. <view style="height:{{navigationBarHeight}} "></view>
  3. <view class='{{isPwd?"content active":"content"}}' bindtap="contentClick">
  4. <view class='head clearfix'>
  5. <text class='fl'>付款给{{merChant.merchantName}}</text>
  6. <image class='fr' src='{{merChant.merchantImgUrl}}' mode='widthFix'></image>
  7. </view>
  8. <text class='txt1'>金额</text>
  9. <view class='money'>
  10. <text class='icon'>¥</text>
  11. <input bindinput="bindKeyInput" disabled='{{showInput}}' class='num' type="digit" focus placeholder="" />
  12. <button id="checkPwd" bindtap='checkPwd' hover-class='active'>确认付款</button>
  13. </view>
  14. <view class='model' wx:if="{{showModel}}">
  15. <view class='zhezhao'></view>
  16. <view class='card-model'>
  17. <view class='card-top'>
  18. 余额不足,请选择其他消费卡支付<image bindtap='showModel' class='close' src='{{wmclose}}'></image>
  19. </view>
  20. <view class='card-content'>
  21. <scroll-view scroll-y style="height: 500rpx;" bindscroll="scroll" scroll-into-view="{{toView}}" scroll-top="{{scrollTop}}">
  22. <view wx:if="{{item.flag}}" class='card-items {{item.flag?"":"opcacity"}}' wx:for="{{cardList}}" wx:key="index" data-remainingAmount='{{item.remainingAmount/100}}' data-id="{{item.id}}" data-flags="check" bindtap='check'>
  23. <view class='card-items-left'>
  24. <view class='card-items-left-img'>
  25. <image src='{{item.coverImg}}'></image>
  26. </view>
  27. <view class='card-items-left-text'>{{item.id}}</view>
  28. </view>
  29. <view class='card-items-right'>
  30. <view class='card-items-right-text'>余额:{{item.remainingAmount/100}}元</view>
  31. <view class='card-items-right-radio' class='icons'>
  32. <image wx:if="{{item.id == ids&&item.flag}}" src='{{wmyes}}' mode='widthFix'></image>
  33. </view>
  34. </view>
  35. </view>
  36. <view wx:if='{{item.remainingAmount/100<inputValue||!item.flag}}' class='card-items {{item.flag?"":"opcacity"}}' wx:for="{{cardList}}" wx:key="index">
  37. <view class='card-items-left'>
  38. <view class='card-items-left-img'>
  39. <image src='{{item.coverImg}}'></image>
  40. </view>
  41. <view class='card-items-left-text'>{{item.id}}</view>
  42. </view>
  43. <view class='card-items-right'>
  44. <view class='card-items-right-text'>余额:{{item.remainingAmount/100}}元</view>
  45. </view>
  46. </view>
  47. </scroll-view>
  48. </view>
  49. <view class='card-bottom'>
  50. <button type='primary' bindtap='suretoPay' data-sure='sure' class='checkcard-box' wx:if="{{arrays.length>0}}">确认付款</button>
  51. <button type='primary' bindtap='gotonewcard' class='checkcard-box' wx:if="{{arrays.length==0}}">购买新卡</button>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <view class='{{isPwd?"pwdDialog active":"pwdDialog"}}'>
  57. <view class="title">
  58. 输入密码
  59. </view>
  60. <input class="pwdForm" type="password" placeholder="请输入密码" bindinput="inputPwd" value="{{password}}" />
  61. <button type="primary" bindtap="goGetPay" data-type='pwdTrue'>确定</button>
  62. </view>