pur-order.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <template>
  2. <view class="pur_order vflex">
  3. <view class="top hflex acenter jbetween">
  4. <view class="order_no">订单号:{{order_no}}</view>
  5. <view class="type">{{type}}</view>
  6. </view>
  7. <view class="name">{{name}}</view>
  8. <view class="box hflex acenter">
  9. <view class="text">联系人:</view>
  10. <view class="text1">{{contacts}}</view>
  11. </view>
  12. <view class="box hflex acenter">
  13. <view class="text">手机号:</view>
  14. <view class="text1">{{phone}}</view>
  15. </view>
  16. <view class="box hflex acenter">
  17. <view class="text">交货日期:</view>
  18. <view class="text1">{{delivery_date}}</view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. name:"pur-order",
  25. props: {
  26. order_no: {
  27. type: String,
  28. value: ''
  29. },
  30. type: {
  31. type: String,
  32. value: ''
  33. },
  34. name: {
  35. type: String,
  36. value: ''
  37. },
  38. contacts: {
  39. type: String,
  40. value: ''
  41. },
  42. phone: {
  43. type: String,
  44. value: ''
  45. },
  46. delivery_date: {
  47. type: String,
  48. value: ''
  49. }
  50. },
  51. data() {
  52. return {
  53. };
  54. }
  55. }
  56. </script>
  57. <style lang="scss">
  58. .pur_order {
  59. width: 100%;
  60. background-color: #f5f5f5;
  61. box-sizing: border-box;
  62. border-radius: 24rpx;
  63. padding: 26rpx 20rpx;
  64. .top {
  65. width: 100%;
  66. padding-bottom: 20rpx;
  67. border-bottom: 1rpx solid #dfdfdf;
  68. .order_no {
  69. font-size: 24rpx;
  70. color: #444;
  71. }
  72. .type {
  73. background-color: #54d2c5;
  74. border-radius: 12rpx 4rpx 12rpx 4rpx;
  75. box-sizing: border-box;
  76. padding: 4rpx 8rpx;
  77. color: #fff;
  78. font-size: 20rpx;
  79. }
  80. }
  81. .name {
  82. margin-top: 20rpx;
  83. font-size: 32rpx;
  84. color: #222;
  85. font-weight: 500;
  86. }
  87. .box {
  88. margin: 10rpx 0 0;
  89. .text {
  90. font-size: 24rpx;
  91. color: #888;
  92. margin-right: 26rpx;
  93. }
  94. .text1 {
  95. font-size: 24rpx;
  96. color: #222;
  97. }
  98. }
  99. }
  100. </style>