index.wxml 430 B

123456789101112
  1. <!--pages/pay/index.wxml-->
  2. <view class="container">
  3. <view class="pay_info">
  4. <text class="pay_text">你需支付</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" bindtap="pay">点击支付</button>
  10. </view>