海南旅游项目 前端仓库
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.

103 lines
3.4 KiB

  1. <template>
  2. <view>
  3. <view class="lf-bg-white lf-p-t-30 lf-p-b-30 lf-p-l-32 lf-p-r-32">
  4. <view class="lf-row-between">
  5. <image src="../../static/logo.png" mode="aspectFill" style="width: 240rpx; height: 240rpx;border-radius: 20rpx;"></image>
  6. <view class="flex-sub padding-left-sm">
  7. <view class="bref-box lf-font-32 lf-color-333 lf-line-2" style="height: 88rpx;line-height: 44rpx;">
  8. 南澳站·潮玩旅游胜地 身处亚热带风情/玩转南澳
  9. </view>
  10. <view class="flex lf-m-t-25 align-center text-center">
  11. <text class="block lf-color-gray lf-font-24" style="line-height: 40rpx;">数量</text>
  12. <text class="lf-m-l-10 lf-color-gray lf-font-24">x 1</text>
  13. </view>
  14. <view class="flex align-center text-center lf-m-t-25">
  15. <lf-price :price="599.00" />
  16. <view class="lf-m-l-20 lf-line-through lf-color-gray">
  17. 599.00
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <self-line/>
  24. <view class="bg-white">
  25. <view class="cu-bar padding-lr">
  26. <text class="lf-color-555 lf-font-28">优惠</text>
  27. <text class="lf-color-price lf-font-28">活动优惠-50</text>
  28. </view>
  29. </view>
  30. <self-line/>
  31. <view class="bg-white">
  32. <view class="cu-bar padding-lr solid-bottom">
  33. <text class="lf-color-555 lf-font-28">联系人</text>
  34. <input type="text" class="lf-color-999 lf-font-28 lf-text-right" placeholder="请输入联系人" />
  35. </view>
  36. <view class="cu-bar padding-lr">
  37. <text class="lf-color-555 lf-font-28">联系方式</text>
  38. <input type="text" class="lf-color-999 lf-font-28 lf-text-right" placeholder="请输入联系电话" />
  39. </view>
  40. </view>
  41. <self-line/>
  42. <view class="bg-white">
  43. <view class="lf-p-t-30 lf-p-l-32 lf-p-b-36">
  44. <view class="lf-font-28 lf-color-555">退款说明</view>
  45. </view>
  46. <view class="lf-p-r-32 lf-p-l-32">
  47. <button class="cu-btn bg-white margin-self border-green" @tap="$url('/pages/order/order-details?order_id='+order_id,{type: 'launch'})">
  48. <u-icon name="weixin-fill" class="text-green lf-font-44 lf-m-r-23"></u-icon>
  49. <text class="lf-font-32 text-green">微信支付</text>
  50. <u-icon name="checkmark-circle" class="lf-font-44" style="position: absolute;right: 22rpx;"></u-icon>
  51. </button>
  52. </view>
  53. <view class="lf-p-r-32 lf-p-l-32 lf-m-t-30">
  54. <button class="cu-btn bg-white margin-self border" @tap="$url('/pages/order/order-details?order_id='+order_id,{type: 'launch'})">
  55. <text class="lf-font-32 lf-color-333">线下支付</text>
  56. </button>
  57. </view>
  58. </view>
  59. <view class="btn-bottom solid-top1">
  60. <view class="padding-lr lf-p-t-10 lf-p-b-10 bg-white flex justify-between align-center shadow">
  61. <view class="flex align-center">
  62. <text class="lf-font-24 lf-font-555">应付款</text>
  63. <lf-price :price="549.00" />
  64. </view>
  65. <button class="btn" @tap="submit">
  66. <text class="lf-font-32 text-white" v-if="type == 1">立即付款</text>
  67. <text class="lf-font-32 text-white" v-else>下单付款</text>
  68. </button>
  69. </view>
  70. </view>
  71. </view>
  72. </template>
  73. <script>
  74. </script>
  75. <style>
  76. .btn{
  77. margin: 0;
  78. padding: 0;
  79. width: 212rpx;
  80. height: 82rpx;
  81. background-color: #1998FE;
  82. color: #FFFFFF;
  83. line-height: 80rpx;
  84. font-size: 32rpx;
  85. border-radius: 41rpx;
  86. }
  87. .bref-box {
  88. text-overflow: -o-ellipsis-lastline;
  89. overflow: hidden;
  90. text-overflow: ellipsis;
  91. display: -webkit-box;
  92. -webkit-line-clamp: 2;
  93. -webkit-box-orient: vertical;
  94. }
  95. </style>