detailCard.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <template>
  2. <view class="card" @click="$emit('toDetail', itemInfo)">
  3. <view class="user-name">
  4. <view class="name">
  5. <image class="header-img" :src="itemInfo.member.avatar" mode=""></image>
  6. <text>{{ itemInfo.member.nickname }}</text>
  7. </view>
  8. <text
  9. class="order-status"
  10. :style="
  11. this.itemInfo.status == '0' || this.itemInfo.status == '1'
  12. ? 'color:#444'
  13. : ''
  14. "
  15. >{{ deliveryStatus }}</text
  16. >
  17. </view>
  18. <view class="order-detail">
  19. <view class="detail">
  20. <image
  21. class="order-img"
  22. :src="itemInfo.goods.sku_item[0].image"
  23. mode=""
  24. ></image>
  25. <view class="detail-right">
  26. <view class="title-price">
  27. <view class="title" v-show="language == 'zh-CN'">
  28. {{ itemInfo.goods.name_cn }}</view
  29. >
  30. <view class="title" v-show="language == 'en-US'">
  31. {{ itemInfo.goods.name_en }}</view
  32. >
  33. <view class="title" v-show="language == 'es-ES'">
  34. {{ itemInfo.goods.name_es }}</view
  35. >
  36. <view class="title" v-show="language == 'it-IT'">
  37. {{ itemInfo.goods.name_ita }}</view
  38. >
  39. <view class="price">
  40. <text style="font-size: 20rpx">¥</text>
  41. <text>{{ itemInfo.goods.discount_price.split(".")[0] }}</text
  42. >.
  43. <text style="font-size: 20rpx">{{
  44. itemInfo.goods.discount_price.split(".")[1]
  45. }}</text>
  46. </view>
  47. </view>
  48. <view class="specifications">
  49. <view class="title"> {{ itemInfo.goods.sku_item[0].item }} </view>
  50. <text>x{{ itemInfo.order_goods.goods_num }}</text>
  51. </view>
  52. </view>
  53. </view>
  54. <view
  55. style="color: #222; font-size: 24rpx; text-align: right"
  56. v-if="language != 'zh-CN'"
  57. >{{
  58. i18n.Atotalof +
  59. "&nbsp;" +
  60. itemInfo.order_goods.goods_num +
  61. "&nbsp;" +
  62. i18n.piece +
  63. i18n.mineCommodity +
  64. "&nbsp;"
  65. }}</view
  66. >
  67. <view class="price-detail">
  68. <text
  69. style="color: #222; font-size: 24rpx"
  70. v-if="language == 'zh-CN'"
  71. >{{
  72. i18n.Atotalof +
  73. "&nbsp;" +
  74. itemInfo.order_goods.goods_num +
  75. "&nbsp;" +
  76. i18n.piece +
  77. i18n.mineCommodity +
  78. "&nbsp;"
  79. }}</text
  80. >
  81. <text style="font-size: 28rpx">{{ i18n.actualPayment }}</text>
  82. <view class="price">
  83. <text style="font-size: 20rpx">¥</text>
  84. <text>{{ itemInfo.order_goods.amount.split(".")[0] }}</text
  85. >.
  86. <text style="font-size: 20rpx">{{
  87. itemInfo.order_goods.amount.split(".")[1]
  88. }}</text>
  89. </view>
  90. </view>
  91. </view>
  92. <view class="btn-list">
  93. <button
  94. disabled
  95. class="btn-2"
  96. :disabled="itemInfo.status == 3"
  97. :style="itemInfo.status == 3 ? 'opacity: 0.5' : ''"
  98. v-if="itemInfo.status == 0 || itemInfo.status == 3"
  99. @click.stop="$emit('platformIntervene', itemInfo)"
  100. >
  101. {{ i18n.platformIntervention }}
  102. </button>
  103. <button
  104. class="btn-1"
  105. v-if="
  106. (itemInfo.status == 0 || itemInfo.status == 3) &&
  107. Number(itemInfo.is_send)
  108. "
  109. @click.stop="$emit('refuseRefund', itemInfo)"
  110. >
  111. {{ i18n.refuseApplication }}
  112. </button>
  113. <button
  114. class="btn-3"
  115. v-if="
  116. (itemInfo.status == 0 || itemInfo.status == 3) &&
  117. Number(itemInfo.is_send)
  118. "
  119. @click.stop="$emit('agreeRefund', itemInfo)"
  120. >
  121. {{ i18n.AccettareRestituzione }}
  122. </button>
  123. <button
  124. class="btn-2"
  125. v-if="itemInfo.status == 1"
  126. @click.stop="$emit('openPop', itemInfo)"
  127. >
  128. {{ i18n.delete }}
  129. </button>
  130. <button class="btn-2" v-if="itemInfo.status == 1">
  131. {{ i18n.details }}
  132. </button>
  133. </view>
  134. </view>
  135. </template>
  136. <script>
  137. export default {
  138. props: {
  139. itemInfo: {
  140. typeof: Object,
  141. default: {},
  142. },
  143. language: {
  144. typeof: String,
  145. default: "",
  146. },
  147. },
  148. computed: {
  149. model() {
  150. if (this.itemInfo.status == 0) {
  151. return "filter: blur(5px);";
  152. }
  153. },
  154. deliveryStatus() {
  155. if (this.itemInfo.status == "0") {
  156. return this.i18n.pendingRefund;
  157. } else if (this.itemInfo.status == "3") {
  158. return this.i18n.platformIntervention;
  159. } else if (this.itemInfo.status == "2") {
  160. return this.i18n.refuseRefund;
  161. } else if (this.itemInfo.status == "1") {
  162. return this.i18n.refunded;
  163. }
  164. },
  165. i18n() {
  166. return this.$t("index");
  167. },
  168. },
  169. data() {
  170. return {};
  171. },
  172. };
  173. </script>
  174. <style scoped lang="scss">
  175. .card {
  176. background-color: #fff;
  177. border-radius: 16rpx;
  178. padding: 0 20rpx;
  179. padding-bottom: 20rpx;
  180. margin-bottom: 20rpx;
  181. .user-name {
  182. display: flex;
  183. justify-content: space-between;
  184. align-items: center;
  185. height: 84rpx;
  186. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  187. .name {
  188. display: flex;
  189. align-items: center;
  190. font-size: 24rpx;
  191. color: #333;
  192. .header-img {
  193. width: 40rpx;
  194. height: 40rpx;
  195. border-radius: 50%;
  196. margin-right: 12rpx;
  197. }
  198. }
  199. .order-status {
  200. font-size: 24rpx;
  201. color: #f83224;
  202. }
  203. }
  204. .order-detail {
  205. margin-top: 22rpx;
  206. position: relative;
  207. .detail {
  208. display: flex;
  209. .order-img {
  210. width: 180rpx;
  211. height: 180rpx;
  212. border-radius: 10rpx;
  213. margin-right: 20rpx;
  214. }
  215. .detail-right {
  216. width: 70%;
  217. .title-price {
  218. display: flex;
  219. font-size: 28rpx;
  220. justify-content: space-between;
  221. align-items: center;
  222. .title {
  223. width: 330rpx;
  224. overflow: hidden;
  225. white-space: nowrap;
  226. text-overflow: ellipsis;
  227. }
  228. }
  229. .specifications {
  230. display: flex;
  231. justify-content: space-between;
  232. align-items: center;
  233. font-size: 28rpx;
  234. color: #777;
  235. margin-top: 10rpx;
  236. .title {
  237. width: 330rpx;
  238. overflow: hidden;
  239. white-space: nowrap;
  240. text-overflow: ellipsis;
  241. }
  242. }
  243. }
  244. }
  245. }
  246. .price-detail {
  247. display: flex;
  248. justify-content: flex-end;
  249. align-items: flex-end;
  250. margin-top: 20rpx;
  251. .price {
  252. font-weight: 600;
  253. }
  254. }
  255. .remarks {
  256. display: flex;
  257. font-size: 28rpx;
  258. background-color: #f4f4f4;
  259. border-radius: 10rpx;
  260. padding: 14rpx 20rpx;
  261. margin-top: 20rpx;
  262. }
  263. .btn-list {
  264. display: flex;
  265. justify-content: flex-end;
  266. margin-top: 30rpx;
  267. .btn-1 {
  268. font-size: 28rpx;
  269. color: #f83224;
  270. border: 2rpx solid #f83224;
  271. background-color: #fff;
  272. margin: 0;
  273. border-radius: 34rpx;
  274. min-width: 162rpx;
  275. margin-left: 20rpx;
  276. }
  277. .btn-2 {
  278. font-size: 28rpx;
  279. color: #222;
  280. border: 2rpx solid #979797;
  281. background-color: #fff;
  282. margin: 0;
  283. border-radius: 34rpx;
  284. min-width: 162rpx;
  285. margin-left: 20rpx;
  286. }
  287. .btn-3 {
  288. font-size: 28rpx;
  289. color: #fff;
  290. background-color: #f83224;
  291. margin: 0;
  292. border-radius: 34rpx;
  293. min-width: 162rpx;
  294. margin-left: 20rpx;
  295. }
  296. }
  297. }
  298. </style>