金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1000 B

  1. <template>
  2. <view>
  3. <lf-nav :spreadOut="true" :showIcon="true" bgColor="#fff" title="确认金额"></lf-nav>
  4. <view class="lf-p-30" style="margin: 0 auto;">
  5. <view class="confirm-card">
  6. <view class="lf-font-32 lf-color-555">
  7. 请核对支付金额
  8. </view>
  9. <view style="font-size: 72rpx;color: #15716E;">¥478.50</view>
  10. <view>
  11. <button class="confirmcash-btn">确认</button>
  12. </view>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. </script>
  19. <style>
  20. page {
  21. background-color: #F8F8F8;
  22. }
  23. </style>
  24. <style scoped lang="scss">
  25. .confirmcash-btn {
  26. width: 550rpx;
  27. height: 100rpx;
  28. background: #15716E;
  29. border-radius: 50rpx;
  30. display: flex;
  31. justify-content: center;
  32. font-size: 32rpx;
  33. color: white;
  34. align-items: center;
  35. }
  36. .confirm-card {
  37. padding: 30rpx 0;
  38. width: 686rpx;
  39. height: 475rpx;
  40. background: #FFFFFF;
  41. border-radius: 20rpx;
  42. display: flex;
  43. justify-content: space-around;
  44. align-items: center;
  45. flex-direction: column;
  46. }
  47. </style>