buySellDetail.vue 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view class="content">
  3. <view class="top-status">
  4. 待支付
  5. </view>
  6. <view class="good-info">
  7. </view>
  8. <view class="user-info">
  9. <view class="top-tit">
  10. <view class="tit-t"></view>
  11. <view class="" style="display: inline-block;">
  12. 订单信息
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. </script>
  20. <style lang='scss' scoped>
  21. .top-status {
  22. width: 750rpx;
  23. height: 89rpx;
  24. line-height: 89rpx;
  25. padding-left: 20rpx;
  26. background: #FFFFFF;
  27. font-size: 32rpx;
  28. font-family: PingFang SC;
  29. font-weight: bold;
  30. color: #FF4C4C;
  31. line-height: 56rpx;
  32. }
  33. .good-info {
  34. width: 750rpx;
  35. height: 253rpx;
  36. background: #FFFFFF;
  37. margin: 20rpx 0;
  38. }
  39. .user-info {
  40. padding: 20rpx 30rpx;
  41. .top-tit {
  42. .tit-t {
  43. display: inline-block;
  44. width: 3rpx;
  45. height: 25rpx;
  46. background: linear-gradient(0deg, #FA2740, #FE5544);
  47. border-radius: 2rpx;
  48. }
  49. }
  50. }
  51. </style>