refundInformation.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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" @click="tochat">
  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">
  59. ¥{{
  60. goodsDetail.refund.actual_refund_price ||
  61. goodsDetail.refund.refund_price
  62. }}
  63. </view>
  64. </view>
  65. <view class="information">
  66. <text class="_label">申请件数</text>
  67. <view class="_title-right">{{ goodsDetail.goods_num }} </view>
  68. </view>
  69. <view class="information">
  70. <text class="_label">申请时间</text>
  71. <view class="_title-right">{{ goodsDetail.refund.created_at }}</view>
  72. </view>
  73. </view>
  74. </template>
  75. <script>
  76. import textRight from "../../accountSecurity/component/textRight.vue";
  77. export default {
  78. components: {
  79. textRight,
  80. },
  81. props: {
  82. status: {
  83. typeof: Number,
  84. default: 0,
  85. },
  86. goodsDetail: {
  87. typeof: Object,
  88. default: () => {
  89. return {};
  90. },
  91. },
  92. },
  93. data() {
  94. return {
  95. packageId: "",
  96. };
  97. },
  98. onLoad(options) {},
  99. methods: {
  100. tochat() {
  101. var that = this;
  102. if (that.goodsDetail.merchant.id == 1) {
  103. uni.navigateTo({
  104. url: "/pageA/service/service",
  105. });
  106. } else {
  107. uni.navigateTo({
  108. url:
  109. "/pageA/chat/chat?user_other=" +
  110. encodeURIComponent(JSON.stringify(that.goodsDetail.merchant)) +
  111. "&user_other_no=" +
  112. that.goodsDetail.merchant.member.easemob_username,
  113. });
  114. }
  115. },
  116. application() {
  117. uni.navigateTo({
  118. url: "/pageC/applicationRefund/applicationRefund",
  119. });
  120. },
  121. //复制
  122. cope(e) {
  123. uni.setClipboardData({
  124. data: e,
  125. success() {
  126. uni.showToast({
  127. title: "复制成功",
  128. icon: "none",
  129. });
  130. },
  131. });
  132. },
  133. getDetail() {},
  134. },
  135. };
  136. </script>
  137. <style scoped lang="scss">
  138. .detail {
  139. padding: 28rpx 20rpx;
  140. background-color: #fff;
  141. border-radius: 16rpx;
  142. margin-top: 28rpx;
  143. .title {
  144. display: flex;
  145. justify-content: space-between;
  146. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  147. padding-bottom: 20rpx;
  148. .title-left {
  149. display: flex;
  150. font-size: 32rpx;
  151. align-items: center;
  152. .header-img {
  153. width: 36rpx;
  154. height: 36rpx;
  155. border-radius: 50%;
  156. margin-right: 20rpx;
  157. }
  158. .right-325 {
  159. width: 32rpx;
  160. height: 32rpx;
  161. }
  162. }
  163. .title-right {
  164. color: #333;
  165. display: flex;
  166. align-items: center;
  167. font-size: 28rpx;
  168. }
  169. .order-status {
  170. color: #f83224;
  171. font-size: 26rpx;
  172. }
  173. }
  174. .commodity-information {
  175. margin-top: 28rpx;
  176. .commodity-1 {
  177. display: flex;
  178. .commodity-img {
  179. width: 180rpx;
  180. height: 180rpx;
  181. margin-right: 20rpx;
  182. border-radius: 10rpx;
  183. }
  184. .commodity-2 {
  185. display: flex;
  186. justify-content: space-between;
  187. .commodity-title {
  188. color: #222;
  189. margin-right: 38rpx;
  190. font-size: 28rpx;
  191. width: 442rpx;
  192. max-height: 80rpx;
  193. display: -webkit-box;
  194. -webkit-box-orient: vertical;
  195. -webkit-line-clamp: 2;
  196. overflow: hidden;
  197. text-overflow: ellipsis;
  198. }
  199. }
  200. .commodity-3 {
  201. display: flex;
  202. justify-content: space-between;
  203. margin-top: 20rpx;
  204. color: #777;
  205. .specifications {
  206. font-size: 28rpx;
  207. color: #777;
  208. }
  209. }
  210. }
  211. }
  212. .last {
  213. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  214. padding-bottom: 20rpx;
  215. }
  216. .btn-list {
  217. display: flex;
  218. justify-content: flex-end;
  219. button {
  220. width: 152rpx;
  221. height: 58rpx;
  222. border: 2rpx solid #979797;
  223. color: #444;
  224. margin: 0;
  225. padding: 0;
  226. font-size: 24rpx;
  227. background-color: #fff;
  228. border-radius: 34rpx;
  229. margin-top: 20rpx;
  230. margin-left: 20rpx;
  231. }
  232. }
  233. .information {
  234. display: flex;
  235. justify-content: space-between;
  236. font-size: 28rpx;
  237. align-items: flex-end;
  238. margin: 34rpx 0;
  239. ._label {
  240. font-size: 28rpx;
  241. color: #333;
  242. }
  243. ._title-right {
  244. font-size: 28rpx;
  245. color: rgba(34, 34, 34, 0.6);
  246. }
  247. }
  248. ._bottom {
  249. display: flex;
  250. justify-content: flex-end;
  251. font-size: 28rpx;
  252. align-items: flex-end;
  253. margin-top: 34rpx;
  254. }
  255. }
  256. </style>