refundInformation.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <view class="detail">
  3. <view class="title">
  4. <view class="title-left">
  5. <image
  6. class="header-img"
  7. :src="goodsDetail.merchant.image"
  8. mode=""
  9. ></image>
  10. <text>{{ goodsDetail.merchant.merchant_name }}</text>
  11. <image
  12. class="right-325"
  13. src="../../../static/mine/325.png"
  14. mode=""
  15. ></image>
  16. </view>
  17. <view class="title-right">
  18. <u-icon name="chat" color="#f83224" size="28"></u-icon>
  19. <text>联系{{ goodsDetail.merchant.id == 1 ? "平台" : "团长" }}</text>
  20. </view>
  21. </view>
  22. <view class="commodity-information">
  23. <view class="commodity-1">
  24. <image
  25. class="commodity-img"
  26. :src="goodsDetail.goods_image"
  27. mode=""
  28. ></image>
  29. <view class="">
  30. <view class="commodity-2">
  31. <view class="commodity-title">{{ goodsDetail.goods_name }} </view>
  32. </view>
  33. <view class="commodity-3">
  34. <view class="specifications">
  35. {{ goodsDetail.sku_item.item }}
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="information">
  42. <text class="_label">订单编号</text>
  43. <view style="color: #222">
  44. <text style="color: rgba(34, 34, 34, 0.6)">{{
  45. goodsDetail.order_no
  46. }}</text>
  47. <text @click="cope(goodsDetail.order_no)" style="color: #f83224">{{
  48. "&nbsp;" + "|" + "&nbsp;" + "复制"
  49. }}</text>
  50. </view>
  51. </view>
  52. <view class="information">
  53. <text class="_label">退款原因</text>
  54. <view class="_title-right"> {{ goodsDetail.refund.refund_reason }} </view>
  55. </view>
  56. <view class="information">
  57. <text class="_label">退款金额</text>
  58. <view class="_title-right"> ¥{{ goodsDetail.amount }} </view>
  59. </view>
  60. <view class="information">
  61. <text class="_label">申请件数</text>
  62. <view class="_title-right">1 </view>
  63. </view>
  64. <view class="information">
  65. <text class="_label">申请时间</text>
  66. <view class="_title-right">{{ goodsDetail.refund.created_at }}</view>
  67. </view>
  68. </view>
  69. </template>
  70. <script>
  71. import textRight from "../../accountSecurity/component/textRight.vue";
  72. export default {
  73. components: {
  74. textRight,
  75. },
  76. props: {
  77. status: {
  78. typeof: Number,
  79. default: 0,
  80. },
  81. goodsDetail: {
  82. typeof: Object,
  83. default: () => {
  84. return {};
  85. },
  86. },
  87. },
  88. data() {
  89. return {
  90. packageId: "",
  91. };
  92. },
  93. onLoad(options) {},
  94. methods: {
  95. application() {
  96. uni.navigateTo({
  97. url: "/pageC/applicationRefund/applicationRefund",
  98. });
  99. },
  100. //复制
  101. cope(e) {
  102. uni.setClipboardData({
  103. data: e,
  104. success() {
  105. uni.showToast({
  106. title: "复制成功",
  107. icon: "none",
  108. });
  109. },
  110. });
  111. },
  112. getDetail() {},
  113. },
  114. };
  115. </script>
  116. <style scoped lang="scss">
  117. .detail {
  118. padding: 28rpx 20rpx;
  119. background-color: #fff;
  120. border-radius: 16rpx;
  121. margin-top: 28rpx;
  122. .title {
  123. display: flex;
  124. justify-content: space-between;
  125. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  126. padding-bottom: 20rpx;
  127. .title-left {
  128. display: flex;
  129. font-size: 32rpx;
  130. align-items: center;
  131. .header-img {
  132. width: 36rpx;
  133. height: 36rpx;
  134. border-radius: 50%;
  135. margin-right: 20rpx;
  136. }
  137. .right-325 {
  138. width: 32rpx;
  139. height: 32rpx;
  140. }
  141. }
  142. .title-right {
  143. color: #333;
  144. display: flex;
  145. align-items: center;
  146. font-size: 28rpx;
  147. }
  148. .order-status {
  149. color: #f83224;
  150. font-size: 26rpx;
  151. }
  152. }
  153. .commodity-information {
  154. margin-top: 28rpx;
  155. .commodity-1 {
  156. display: flex;
  157. .commodity-img {
  158. width: 180rpx;
  159. height: 180rpx;
  160. margin-right: 20rpx;
  161. border-radius: 10rpx;
  162. }
  163. .commodity-2 {
  164. display: flex;
  165. justify-content: space-between;
  166. .commodity-title {
  167. color: #222;
  168. margin-right: 38rpx;
  169. font-size: 28rpx;
  170. width: 442rpx;
  171. max-height: 80rpx;
  172. display: -webkit-box;
  173. -webkit-box-orient: vertical;
  174. -webkit-line-clamp: 2;
  175. overflow: hidden;
  176. text-overflow: ellipsis;
  177. }
  178. }
  179. .commodity-3 {
  180. display: flex;
  181. justify-content: space-between;
  182. margin-top: 20rpx;
  183. color: #777;
  184. .specifications {
  185. font-size: 28rpx;
  186. color: #777;
  187. }
  188. }
  189. }
  190. }
  191. .last {
  192. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  193. padding-bottom: 20rpx;
  194. }
  195. .btn-list {
  196. display: flex;
  197. justify-content: flex-end;
  198. button {
  199. width: 152rpx;
  200. height: 58rpx;
  201. border: 2rpx solid #979797;
  202. color: #444;
  203. margin: 0;
  204. padding: 0;
  205. font-size: 24rpx;
  206. background-color: #fff;
  207. border-radius: 34rpx;
  208. margin-top: 20rpx;
  209. margin-left: 20rpx;
  210. }
  211. }
  212. .information {
  213. display: flex;
  214. justify-content: space-between;
  215. font-size: 28rpx;
  216. align-items: flex-end;
  217. margin: 34rpx 0;
  218. ._label {
  219. font-size: 28rpx;
  220. color: #333;
  221. }
  222. ._title-right {
  223. font-size: 28rpx;
  224. color: rgba(34, 34, 34, 0.6);
  225. }
  226. }
  227. ._bottom {
  228. display: flex;
  229. justify-content: flex-end;
  230. font-size: 28rpx;
  231. align-items: flex-end;
  232. margin-top: 34rpx;
  233. }
  234. }
  235. </style>