Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

official-car-issue-result.vue 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <!-- 公务车发行-订单查询结果 -->
  2. <template>
  3. <view class="list">
  4. <view class="item">
  5. <view class="head">
  6. <view class="name">
  7. <image :src="`${$imgUrl}issueActivation/icon-numberplate.png`" class="icon"></image>
  8. <text class="title">{{state.numberplate}}</text>
  9. </view>
  10. </view>
  11. <view class="detail">
  12. <view class="orders">
  13. <view class="order-text">
  14. <text class="type">车牌颜色:</text>
  15. <text class="value">{{state.numberplateColor}}</text>
  16. </view>
  17. <view class="order-text odd">
  18. <text class="type">订单进度:</text>
  19. <text class="value">{{state.orderProgress}}</text>
  20. </view>
  21. <view class="order-text">
  22. <text class="type">订单状态:</text>
  23. <text class="value">{{state.orderStatus === 1 ? '待发货' : '待激活'}}</text>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="btns" v-if="state.orderStatus === 2">
  28. <view class="btn btn-primary as-gravity-center" @click="$util.navTo('/pages/bluetooth/device-active-step1')">去激活</view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script setup lang="ts">
  34. import { reactive } from "vue";
  35. import { msg } from "@/utils/utils";
  36. const state = reactive({
  37. numberplate:'贵A1236',
  38. numberplateColor:'白色',
  39. orderProgress:'省中心已制卡',
  40. orderStatus:2,//1-待发货 2-待激活
  41. })
  42. </script>
  43. <style>
  44. page{
  45. background-color: #EEF7F7;
  46. }
  47. </style>
  48. <style lang="scss" scoped>
  49. .list {
  50. padding: 30rpx 30rpx 140rpx;
  51. display: flex;
  52. flex-direction: column;
  53. }
  54. .list .item {
  55. background: #ffffff;
  56. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  57. border-radius: 20rpx;
  58. box-sizing: border-box;
  59. display: flex;
  60. flex-direction: column;
  61. margin-bottom: 30rpx;
  62. }
  63. .list .item .head {
  64. display: flex;
  65. justify-content: space-between;
  66. align-items: center;
  67. padding: 20rpx 28rpx;
  68. border-bottom: 1px solid #dcdcdc;
  69. }
  70. .list .item .head .icon {
  71. width: 38rpx;
  72. height: 38rpx;
  73. margin-right: 20rpx;
  74. }
  75. .list .item .head .name {
  76. display: flex;
  77. align-items: center;
  78. }
  79. .list .text-green {
  80. font-size: 26rpx;
  81. color: #00b38b;
  82. }
  83. .list .text-orange {
  84. font-size: 26rpx;
  85. color: #ff8000;
  86. }
  87. .list .title {
  88. font-size: 30rpx;
  89. color: #333;
  90. }
  91. .list .detail {
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. padding: 30rpx 32rpx;
  96. }
  97. .list .detail .type {
  98. font-size: 26rpx;
  99. color: #999;
  100. }
  101. .list .detail .value {
  102. font-size: 26rpx;
  103. color: #333;
  104. }
  105. .list .finished .detail .value {
  106. color: #999;
  107. }
  108. .list .detail .odd {
  109. margin: 20rpx 0;
  110. }
  111. .list .cny {
  112. font-size: 26rpx;
  113. color: #333;
  114. }
  115. .list .finished .cny{
  116. color: #999;
  117. }
  118. .list .amount {
  119. font-size: 40rpx;
  120. font-weight: bold;
  121. }
  122. .list .finished .amount {
  123. color: #999;
  124. }
  125. .list .btns {
  126. display: flex;
  127. align-items: center;
  128. justify-content: flex-end;
  129. border-top: 1px solid #dcdcdc;
  130. margin: 0 30rpx;
  131. padding: 20rpx 0;
  132. }
  133. .list .btn {
  134. height: 60rpx;
  135. // line-height: 60rpx;
  136. text-align: center;
  137. border-radius: 30rpx;
  138. padding: 0 24rpx;
  139. font-size: 26rpx;
  140. box-sizing: border-box;
  141. margin-right: 20rpx;
  142. }
  143. .list .btns .btn:last-child {
  144. margin: 0;
  145. }
  146. .list .btn-primary {
  147. border: 1px solid #00b38b;
  148. color: #00b38b;
  149. }
  150. .list .btn-normal {
  151. border: 1px solid #dcdcdc;
  152. color: #333;
  153. }
  154. </style>