You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

invoiceList.vue 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view class="listbox">
  3. <view class="card-no-active">
  4. <view class="head">
  5. <image :src="`${$imgUrl}order/icon-star-green.png`" mode=""></image>
  6. <text>新办订单</text>
  7. </view>
  8. <view class="content">
  9. <view class="row">
  10. 产品类型:<text>01872753475754</text>
  11. </view>
  12. <view class="row">
  13. 车牌号:<text>贵AJ1234</text>
  14. </view>
  15. <view class="row">
  16. 激活时间:<text>2023-02-20</text>
  17. </view>
  18. <view class="row">
  19. 订单金额:<text>120.00</text>
  20. </view>
  21. </view>
  22. <view class="btns">
  23. <button>开票</button>
  24. </view>
  25. </view>
  26. <view class="card-active">
  27. <view class="head">
  28. <image :src="`${$imgUrl}order/icon-star-green.png`" mode=""></image>
  29. <text>售后订单</text>
  30. <view class="status">
  31. 已开票
  32. </view>
  33. </view>
  34. <view class="content">
  35. <view class="row">
  36. 产品类型:<text>01872753475754</text>
  37. </view>
  38. <view class="row">
  39. 车牌号:<text>贵AJ1234</text>
  40. </view>
  41. <view class="row">
  42. 激活时间:<text>2023-02-20</text>
  43. </view>
  44. <view class="row">
  45. 订单金额:<text>120.00</text>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </template>
  51. <script setup lang="ts">
  52. import {
  53. reactive
  54. } from "vue";
  55. </script>
  56. <style>
  57. page {
  58. width: 100%;
  59. height: 100%;
  60. }
  61. </style>
  62. <style lang="scss" scoped>
  63. .listbox {
  64. // width: 100%;
  65. height: 100%;
  66. background-color: #EEF7F7;
  67. padding: 30rpx;
  68. border-top: 1rpx solid #DFDFDF;
  69. .card-no-active {
  70. margin-bottom: 30rpx;
  71. height: 438rpx;
  72. background: #FFFFFF;
  73. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  74. border-radius: 20rpx;
  75. display: flex;
  76. flex-direction: column;
  77. .head {
  78. display: flex;
  79. padding: 30rpx;
  80. align-items: center;
  81. border-bottom: 1px solid #DCDCDC;
  82. image {
  83. width: 48rpx;
  84. height: 48rpx;
  85. }
  86. text {
  87. font-size: 30rpx;
  88. font-family: Noto Sans S Chinese;
  89. font-weight: 400;
  90. color: #333333;
  91. }
  92. }
  93. .content {
  94. margin: 30rpx;
  95. margin-bottom: 0;
  96. border-bottom: 1rpx solid #DCDCDC;
  97. .row {
  98. font-size: 26rpx;
  99. font-family: Noto Sans S Chinese;
  100. font-weight: 400;
  101. color: #999999;
  102. margin-bottom: 20rpx;
  103. text {
  104. font-size: 26rpx;
  105. font-family: Noto Sans S Chinese;
  106. font-weight: 400;
  107. color: #333333;
  108. }
  109. }
  110. }
  111. .btns {
  112. flex: 1;
  113. display: flex;
  114. align-items: center;
  115. justify-content: flex-end;
  116. padding: 0 30rpx;
  117. button {
  118. margin: 0;
  119. display: inline-block;
  120. height: 61rpx;
  121. background: #FFFFFF;
  122. border: 1px solid #00B38B;
  123. border-radius: 30rpx;
  124. font-size: 26rpx;
  125. font-family: Noto Sans S Chinese;
  126. font-weight: 400;
  127. color: #00B38B;
  128. line-height: 61rpx;
  129. }
  130. }
  131. }
  132. .card-active {
  133. height: 375rpx;
  134. background: #FFFFFF;
  135. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  136. border-radius: 20rpx;
  137. display: flex;
  138. flex-direction: column;
  139. .head {
  140. display: flex;
  141. padding: 30rpx;
  142. align-items: center;
  143. border-bottom: 1px solid #DCDCDC;
  144. image {
  145. width: 48rpx;
  146. height: 48rpx;
  147. }
  148. text {
  149. font-size: 30rpx;
  150. font-family: Noto Sans S Chinese;
  151. font-weight: 400;
  152. color: #333333;
  153. }
  154. .status {
  155. position: absolute;
  156. right: 35px;
  157. font-size: 26rpx;
  158. font-family: Noto Sans S Chinese;
  159. font-weight: 400;
  160. color: #777777;
  161. }
  162. }
  163. .content {
  164. margin: 30rpx;
  165. .row {
  166. font-size: 26rpx;
  167. font-family: Noto Sans S Chinese;
  168. font-weight: 400;
  169. color: #999999;
  170. margin-bottom: 20rpx;
  171. text {
  172. font-size: 26rpx;
  173. font-family: Noto Sans S Chinese;
  174. font-weight: 400;
  175. color: #333333;
  176. }
  177. }
  178. }
  179. }
  180. }
  181. </style>