refundInformation.vue 6.1 KB

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