deliverGoods.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <template>
  2. <view class="page">
  3. <view class="goods-detail">
  4. <view class="order-num">
  5. <text>订单号:</text>
  6. <text>Cbz20220809122323456</text>
  7. </view>
  8. <view class="detail">
  9. <image class="order-img"
  10. src="https://img12.360buyimg.com/jdcms/s460x460_jfs/t1/226637/16/19995/180517/66696f86Fa90c7d49/3bc094e1eb7aeb12.jpg.avif"
  11. mode=""></image>
  12. <view class="detail-right">
  13. <view class="title-price">
  14. <view class="title">
  15. OATLY噢麦力 咖啡大师…
  16. </view>
  17. <view class="price">
  18. <text style="font-size: 20rpx;">¥</text>
  19. <text>133</text>.
  20. <text style="font-size: 20rpx;">22</text>
  21. </view>
  22. </view>
  23. <view class="specifications">
  24. <view class="title">
  25. 咖啡大师燕麦奶250ml*6瓶
  26. </view>
  27. <text>x1</text>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="address">
  32. <view class="name-address">
  33. 张**,***********,河北省保定区莲池区未来石*********
  34. </view>
  35. <image class="eye-icon" src="../../static/mine/347.png" mode=""></image>
  36. </view>
  37. </view>
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. };
  45. },
  46. mounted() {
  47. uni.setNavigationBarTitle({
  48. title: "立即发货"
  49. })
  50. }
  51. }
  52. </script>
  53. <style lang="scss" scoped>
  54. .page {
  55. padding: 20rpx 24rpx;
  56. .goods-detail {
  57. background-color: #fff;
  58. border-radius: 16rpx;
  59. padding: 26rpx 20rpx;
  60. .order-num {
  61. font-size: 26rpx;
  62. color: #333;
  63. }
  64. .detail {
  65. margin-top: 28rpx;
  66. display: flex;
  67. padding-bottom: 20rpx;
  68. border-bottom: 2rpx solid #F4F4F4;
  69. .order-img {
  70. width: 180rpx;
  71. height: 180rpx;
  72. border-radius: 10rpx;
  73. margin-right: 20rpx;
  74. }
  75. .detail-right {
  76. width: 70%;
  77. .title-price {
  78. display: flex;
  79. font-size: 28rpx;
  80. justify-content: space-between;
  81. align-items: center;
  82. margin-bottom: 16rpx;
  83. .title {
  84. width: 330rpx;
  85. overflow: hidden;
  86. white-space: nowrap;
  87. text-overflow: ellipsis;
  88. }
  89. }
  90. .specifications {
  91. display: flex;
  92. justify-content: space-between;
  93. align-items: center;
  94. font-size: 28rpx;
  95. color: #777;
  96. margin-top: 10rpx;
  97. .title {
  98. width: 330rpx;
  99. overflow: hidden;
  100. white-space: nowrap;
  101. text-overflow: ellipsis;
  102. }
  103. }
  104. }
  105. }
  106. .address{
  107. display: flex;
  108. align-items: center;
  109. justify-content: space-between;
  110. margin-top: 20rpx;
  111. .name-address{
  112. font-size: 26rpx;
  113. color: #333;
  114. width: 72%;
  115. }
  116. .eye-icon{
  117. width: 32rpx;
  118. height: 32rpx;
  119. }
  120. }
  121. }
  122. }
  123. </style>