refundInformation.vue 5.3 KB

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