選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

refund-order-balance.vue 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <nav-bar title="余额补领"></nav-bar>
  3. <view class="oderPage">
  4. <view class="details">
  5. <view class="header">
  6. <image :src="`${$imgUrl}order/no1.png`" mode=""></image>
  7. <text>091110019133110</text>
  8. </view>
  9. <view class="hr">
  10. </view>
  11. <view class="row">
  12. <view class="">
  13. 订单车牌号:
  14. </view>
  15. <text>贵A01234</text>
  16. </view>
  17. <view class="row">
  18. <view class="">
  19. 旧卡号:
  20. </view>
  21. <text>1293030566565</text>
  22. </view>
  23. <view class="row">
  24. <view class="">
  25. 旧卡金额:
  26. </view>
  27. <text>102.00</text>
  28. </view>
  29. <view class="row">
  30. <view class="">
  31. 换卡时间:
  32. </view>
  33. <text>2023-02-12 10:00:00</text>
  34. </view>
  35. <view class="row">
  36. <view class="">
  37. 新卡号:
  38. </view>
  39. <text style="color: #00B38B;">10220100001</text>
  40. </view>
  41. <view class="line">
  42. </view>
  43. <button>余额补领</button>
  44. </view>
  45. </view>
  46. </template>
  47. <script setup lang="ts">
  48. import {
  49. ref,
  50. reactive
  51. } from "vue";
  52. const reason = ref('')
  53. // 单选数据列表
  54. const radiolist1 = reactive([{
  55. name: '退货原因1',
  56. disabled: false
  57. },
  58. {
  59. name: '退货原因2',
  60. disabled: false
  61. },
  62. {
  63. name: '退货原因3',
  64. disabled: false
  65. },
  66. {
  67. name: '退货原因4',
  68. disabled: false
  69. },
  70. {
  71. name: '退货原因5',
  72. disabled: false
  73. },
  74. ], )
  75. // 单选
  76. const radioChange = (n) => {
  77. console.log('radioChange', n);
  78. }
  79. </script>
  80. <style>
  81. page {
  82. /* width: 100%;
  83. height: 100%; */
  84. display: flex;
  85. flex-direction: column;
  86. background-color: #F3F3F3;
  87. box-sizing: border-box;
  88. }
  89. </style>
  90. <style lang="scss" scoped>
  91. .oderPage {
  92. background-color: #EEF7F7;
  93. margin: 30rpx;
  94. .details {
  95. position: relative;
  96. background: #fff;
  97. border-radius: 20rpx;
  98. padding: 30rpx;
  99. height: 540rpx;
  100. background: #FFFFFF;
  101. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  102. border-radius: 20rpx;
  103. .header {
  104. align-items: center;
  105. display: flex;
  106. padding-bottom: 30rpx;
  107. // border-bottom: 1px solid #DCDCDC;
  108. image {
  109. width: 51rpx;
  110. height: 31rpx;
  111. }
  112. text {
  113. font-size: 30rpx;
  114. margin-left: 20rpx;
  115. font-weight: 600;
  116. }
  117. }
  118. .hr {
  119. height: 1rpx;
  120. background: #DCDCDC;
  121. width: 100%;
  122. position: absolute;
  123. left: 50%;
  124. transform: translate(-50%);
  125. }
  126. .row {
  127. display: flex;
  128. margin: 34rpx 0;
  129. font-size: 26rpx;
  130. font-family: Noto Sans S Chinese;
  131. font-weight: 400;
  132. color: #333333;
  133. line-height: 30rpx;
  134. view {
  135. font-size: 26rpx;
  136. font-family: Noto Sans S Chinese;
  137. font-weight: 400;
  138. color: #999999;
  139. line-height: 30rpx;
  140. }
  141. }
  142. .line {
  143. width: 100%;
  144. height: 1rpx;
  145. background: #DCDCDC;
  146. }
  147. button {
  148. width: 141rpx;
  149. height: 61rpx;
  150. background: #FFFFFF;
  151. border: 1px solid #00B38B;
  152. border-radius: 30rpx;
  153. font-size: 26rpx;
  154. font-family: Noto Sans S Chinese;
  155. font-weight: 400;
  156. color: #00B38B;
  157. line-height: 61rpx;
  158. position: absolute;
  159. right: 30rpx;
  160. bottom: 20rpx;
  161. padding: 0;
  162. }
  163. }
  164. }
  165. </style>