Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

obuCancel.vue 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <template>
  2. <!-- OBU注销 -->
  3. <view class="wrapper">
  4. <!-- 背景颜色充满屏 -->
  5. <view class="bg-color"></view>
  6. <view class="total-info"><text>卡签注销:</text><text class="text-space">2条</text></view>
  7. <view class="detail-list-box">
  8. <view class="detail-box" v-for="item in list" :key="item.id">
  9. <view class="detail-header">
  10. <text class="detail-name">OBU信息</text>
  11. <view class="header-right"><text>单号:</text><text class="text-space">11020009001</text></view>
  12. </view>
  13. <view class="detail-content">
  14. <view class="d-row">
  15. <text class="d-label">用户名称:</text>
  16. <text class="d-value">李某</text>
  17. </view>
  18. <view class="d-row">
  19. <text class="d-label">证件类型:</text>
  20. <text class="d-value">居民身份证</text>
  21. </view>
  22. <view class="d-row">
  23. <text class="d-label">证件号码:</text>
  24. <text class="d-value">440305200101129001</text>
  25. </view>
  26. <view class="d-row">
  27. <text class="d-label">订单车牌号:</text>
  28. <text class="d-value">贵A12345</text>
  29. </view>
  30. <view class="d-row">
  31. <text class="d-label">收费车型:</text>
  32. <text class="d-value">一类车型</text>
  33. </view>
  34. <view class="d-row">
  35. <text class="d-label">OBU号:</text>
  36. <text class="d-value">2001029001</text>
  37. </view>
  38. <view class="d-row">
  39. <text class="d-label">OBU状态:</text>
  40. <text class="d-value">XXX</text>
  41. </view>
  42. <view class="d-row">
  43. <text class="d-label">质保期:</text>
  44. <text class="d-value">2023-04-12</text>
  45. </view>
  46. <view class="post-sale">
  47. <view class="d-row">
  48. <text class="d-label">业务类型:</text>
  49. <text class="d-value">OBU注销</text>
  50. </view>
  51. <view class="d-row">
  52. <text class="d-label">注销时间:</text>
  53. <text class="d-value">2023.01.21</text>
  54. </view>
  55. <view class="d-row">
  56. <text class="d-label">业务员:</text>
  57. <text class="d-value">李想</text>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. </template>
  65. <script setup lang="ts">
  66. import {
  67. reactive
  68. } from "vue";
  69. const list = reactive([{
  70. id: 1
  71. },
  72. {
  73. id: 2
  74. },
  75. ])
  76. </script>
  77. <style lang="scss" scoped>
  78. .bg-color {
  79. position: fixed;
  80. top: 0;
  81. left: 0;
  82. right: 0;
  83. bottom: 0;
  84. background: #F3F3F3;
  85. z-index: -1;
  86. }
  87. .total-info {
  88. margin-top: 35rpx;
  89. margin-left: 30rpx;
  90. color: #777777;
  91. font-size: 28rpx;
  92. display: flex;
  93. align-items: center;
  94. .text-space {
  95. margin-left: 26rpx;
  96. }
  97. }
  98. .detail-list-box {
  99. margin: 0 30rpx;
  100. padding-bottom: 30rpx;
  101. }
  102. .detail-box {
  103. background: #FFFFFF;
  104. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  105. border-radius: 20rpx;
  106. margin-top: 30rpx;
  107. .detail-header {
  108. display: flex;
  109. border-bottom: 1rpx solid #DCDCDC;
  110. padding: 30rpx;
  111. align-items: center;
  112. justify-content: space-between;
  113. .detail-name {
  114. font-size: 30rpx;
  115. font-weight: 400;
  116. color: #333333;
  117. }
  118. .header-right {
  119. color: #777777;
  120. font-size: 28rpx;
  121. .text-space {
  122. margin-left: 26rpx;
  123. }
  124. }
  125. }
  126. .detail-content {
  127. padding: 28rpx 29rpx 10rpx 29rpx;
  128. .post-sale {
  129. border-top: 1rpx solid #DCDCDC;
  130. padding-top: 38rpx
  131. }
  132. .d-row {
  133. display: flex;
  134. margin-bottom: 32rpx;
  135. .d-label {
  136. font-size: 26rpx;
  137. //width: 178rpx;
  138. color: #999999;
  139. text-align: right;
  140. }
  141. .d-value {
  142. font-size: 26rpx;
  143. color: #333333;
  144. flex: 1;
  145. overflow: hidden;
  146. margin-left: 25rpx;
  147. word-wrap: normal;
  148. word-wrap: break-word;
  149. }
  150. }
  151. }
  152. }
  153. </style>