order-top.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view class="order-top">
  3. <view class="hflex acenter jbetween">
  4. <view class="title">客户信息</view>
  5. <view class="type1" v-if="type == 1">未报价</view>
  6. <view class="type1 type2" v-if="type == 2">已报价</view>
  7. <view class="type1 type3" v-if="type == 3">已匹配</view>
  8. </view>
  9. <view class="hflex acenter cell">
  10. <view class="left">联系人:</view>
  11. <view class="right">{{name}}</view>
  12. </view>
  13. <view class="hflex acenter">
  14. <view class="left">手机号:</view>
  15. <view class="right">{{phone}}</view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. name:"order-top",
  22. props: {
  23. name: {
  24. type: String,
  25. value: ''
  26. },
  27. phone: {
  28. type: String,
  29. value: ''
  30. },
  31. type: {
  32. type: String,
  33. value: ''
  34. },
  35. },
  36. data() {
  37. return {
  38. };
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .order-top {
  44. width: 690rpx;
  45. background: #FFFFFF;
  46. border-radius: 24rpx;
  47. box-sizing: border-box;
  48. padding: 24rpx 20rpx;
  49. .title {
  50. font-size: 30rpx;
  51. font-weight: 500;
  52. color: #222222;
  53. }
  54. .cell {
  55. margin: 16rpx 0 24rpx;
  56. }
  57. .type1 {
  58. width: 96rpx;
  59. height: 40rpx;
  60. background: #FFF4E8;
  61. border-radius: 4rpx;
  62. text-align: center;
  63. line-height: 40rpx;
  64. font-size: 22rpx;
  65. font-weight: 400;
  66. color: #FBA94E;
  67. }
  68. .type2 {
  69. background: #E7EBF7;
  70. color: #506DFF;
  71. }
  72. .type3 {
  73. background: #E6F7E8;
  74. color: #4AB256;
  75. }
  76. .left {
  77. font-size: 26rpx;
  78. font-weight: 400;
  79. color: #222222;
  80. }
  81. .right {
  82. font-size: 26rpx;
  83. font-weight: 400;
  84. color: #888888;
  85. }
  86. }
  87. </style>