refundInformation.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <view class="detail">
  3. <view class="title">
  4. <view class="title-left">
  5. <image class="header-img"
  6. src="https://tse4-mm.cn.bing.net/th/id/OIP-C.uMf5AX3a6yYpIhpEkyDxiQAAAA?rs=1&pid=ImgDetMain"
  7. mode=""></image>
  8. <text>张三</text>
  9. <image class="right-325" src="../../../static/mine/325.png" mode=""></image>
  10. </view>
  11. <view class="title-right">
  12. <u-icon name="chat" color="#f83224" size="28"></u-icon>
  13. <text>联系团长</text>
  14. </view>
  15. </view>
  16. <view class="commodity-information">
  17. <view class="commodity-1">
  18. <image class="commodity-img"
  19. src="https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/156939/24/43697/126104/6619de23F69802006/8432635baed61875.jpg.webp"
  20. mode=""></image>
  21. <view class="">
  22. <view class="commodity-2">
  23. <view class="commodity-title">
  24. OATLY 噢麦力 醇香燕麦…
  25. </view>
  26. </view>
  27. <view class="commodity-3">
  28. <view class="specifications">
  29. 【醇香】250ml*3
  30. </view>
  31. <view style="font-size: 24rpx;">
  32. x1
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="information">
  39. <text class="_label">订单编号</text>
  40. <view style="color: #222;">
  41. <text style="color: rgba(34, 34, 34, .6);">29819301003001313456</text>
  42. <text @click="cope('111')" style="color: #f83224;">{{'&nbsp;' + "|" + "&nbsp;" + "复制"}}</text>
  43. </view>
  44. </view>
  45. <view class="information">
  46. <text class="_label">退款原因</text>
  47. <view class="_title-right">
  48. 商品问题
  49. </view>
  50. </view>
  51. <view class="information">
  52. <text class="_label">退款金额</text>
  53. <view class="_title-right">
  54. ¥134.80
  55. </view>
  56. </view>
  57. <view class="information">
  58. <text class="_label">申请件数</text>
  59. <view class="_title-right">1
  60. </view>
  61. </view>
  62. <view class="information">
  63. <text class="_label">申请时间</text>
  64. <view class="_title-right">2023-12-02 18:37
  65. </view>
  66. </view>
  67. </view>
  68. </template>
  69. <script>
  70. import textRight from '../../accountSecurity/component/textRight.vue'
  71. export default {
  72. components: {
  73. textRight
  74. },
  75. props: {
  76. status: {
  77. typeof: Number,
  78. default: 0
  79. }
  80. },
  81. data() {
  82. return {
  83. }
  84. },
  85. methods: {
  86. application() {
  87. uni.navigateTo({
  88. url: "/pageC/applicationRefund/applicationRefund"
  89. })
  90. },
  91. //复制
  92. cope(e) {
  93. uni.setClipboardData({
  94. data: e,
  95. success() {
  96. uni.showToast({
  97. title: "复制成功",
  98. icon: "none"
  99. })
  100. }
  101. })
  102. },
  103. },
  104. }
  105. </script>
  106. <style scoped lang="scss">
  107. .detail {
  108. padding: 28rpx 20rpx;
  109. background-color: #fff;
  110. border-radius: 16rpx;
  111. margin-top: 28rpx;
  112. .title {
  113. display: flex;
  114. justify-content: space-between;
  115. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  116. padding-bottom: 20rpx;
  117. .title-left {
  118. display: flex;
  119. font-size: 32rpx;
  120. align-items: center;
  121. .header-img {
  122. width: 36rpx;
  123. height: 36rpx;
  124. border-radius: 50%;
  125. margin-right: 20rpx;
  126. }
  127. .right-325 {
  128. width: 32rpx;
  129. height: 32rpx;
  130. }
  131. }
  132. .title-right {
  133. color: #333;
  134. display: flex;
  135. align-items: center;
  136. font-size: 28rpx;
  137. }
  138. .order-status {
  139. color: #f83224;
  140. font-size: 26rpx;
  141. }
  142. }
  143. .commodity-information {
  144. margin-top: 28rpx;
  145. .commodity-1 {
  146. display: flex;
  147. .commodity-img {
  148. width: 180rpx;
  149. height: 180rpx;
  150. margin-right: 20rpx;
  151. border-radius: 10rpx;
  152. }
  153. .commodity-2 {
  154. display: flex;
  155. justify-content: space-between;
  156. .commodity-title {
  157. width: 472rpx;
  158. max-height: 80rpx;
  159. overflow: hidden;
  160. white-space: nowrap;
  161. text-overflow: ellipsis;
  162. margin-right: 38rpx;
  163. }
  164. }
  165. .commodity-3 {
  166. display: flex;
  167. justify-content: space-between;
  168. margin-top: 20rpx;
  169. color: #777;
  170. .specifications {
  171. font-size: 28rpx;
  172. color: #777;
  173. }
  174. }
  175. }
  176. }
  177. .last {
  178. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  179. padding-bottom: 20rpx;
  180. }
  181. .btn-list {
  182. display: flex;
  183. justify-content: flex-end;
  184. button {
  185. width: 152rpx;
  186. height: 58rpx;
  187. border: 2rpx solid #979797;
  188. color: #444;
  189. margin: 0;
  190. padding: 0;
  191. font-size: 24rpx;
  192. background-color: #fff;
  193. border-radius: 34rpx;
  194. margin-top: 20rpx;
  195. margin-left: 20rpx;
  196. }
  197. }
  198. .information {
  199. display: flex;
  200. justify-content: space-between;
  201. font-size: 28rpx;
  202. align-items: flex-end;
  203. margin: 34rpx 0;
  204. ._label {
  205. font-size: 28rpx;
  206. color: #333;
  207. }
  208. ._title-right {
  209. font-size: 28rpx;
  210. color: rgba(34, 34, 34, .6);
  211. }
  212. }
  213. ._bottom {
  214. display: flex;
  215. justify-content: flex-end;
  216. font-size: 28rpx;
  217. align-items: flex-end;
  218. margin-top: 34rpx;
  219. }
  220. }
  221. </style>