refundInformation.vue 6.8 KB

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