index.wxml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <!--pages/pay/index.wxml-->
  2. <view class="container">
  3. <view class="pay_info">
  4. <text class="pay_text">{{orderInfo.gamename || '你需支付'}}</text>
  5. <text class="pay_price">{{orderInfo.product_price}}元</text>
  6. <text class="pay_game">购买{{orderInfo.product_cnt}}{{orderInfo.product_name}}</text>
  7. </view>
  8. <text class="pay_tips">请点击右上角按钮返回游戏</text>
  9. <button class="pay_btn" open-type="getUserInfo" bindgetuserinfo="pay">点击支付</button>
  10. <!-- <button class="pay_btn pay_btn__default">更多游戏</button> -->
  11. <view class="pay__status" wx:if="{{status === 'success'}}">
  12. <view class="pay__status-inner">
  13. <image class="pay__status-icon" src="/image/icon_success.png"></image>
  14. <text class="pay__status-tips">恭喜,充值成功</text>
  15. <text class="pay__status-remark">请点击右上角按钮返回游戏</text>
  16. </view>
  17. </view>
  18. <view class="pay__status" wx:elif="{{status === 'fail'}}">
  19. <view class="pay__status-inner">
  20. <image class="pay__status-icon" src="/image/icon_fail.png"></image>
  21. <text class="pay__status-tips">充值失败,请重新充值</text>
  22. <button class="pay__status-btn" bindtap="hideStatus">重新充值</button>
  23. </view>
  24. </view>
  25. </view>