phoneCharges.wxml 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <view class="postage">
  2. <view class="tips" wx:if="{{tips}}">{{tips}}</view>
  3. <!-- 选择油卡 -->
  4. <view class="tabs">
  5. <view class="tabs-content border-top-radius">
  6. <view class="tabs-content__tips">
  7. <text class="tabs-content__tips-text">选择手机号</text>
  8. <!-- <image class="tabs-content__tips-add" src="/image/postage/add.png"></image> -->
  9. </view>
  10. <view class="card-no vux-1px-b" bindtap="handlerAddCard">
  11. {{card_no}}
  12. </view>
  13. </view>
  14. </view>
  15. <!-- 充值挡位 -->
  16. <view class="rechargeGear" wx:if="{{goods.length}}">
  17. <view class="rechargeGear-title">充值挡位</view>
  18. <view class="rechargeGear-content">
  19. <view class="rechargeGear-content__item {{rechargeGearActiveIndex == index ? 'active' : ''}}" wx:for="{{goods}}" wx:key="index"
  20. bindtap="handlerClickRechargeGear" data-activeindex="{{index}}" data-currentvalue="{{item.goods_id}}">
  21. <view class="faceValue">{{item.goods_spec}}</view>
  22. <view class="price">售价 {{item.goods_price}} 元</view>
  23. </view>
  24. </view>
  25. <view class="rechargeGear-footer">
  26. <view class="btn-rechargeNow" bindtap="handlerRecharge">
  27. <text>立即充值</text>
  28. </view>
  29. <view class="rechargeNow-tips">充值后,即时到账</view>
  30. </view>
  31. </view>
  32. </view>