orderInofrmation.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <template>
  2. <view
  3. class="detail"
  4. @click="$emit('toDetail', itemInfo)"
  5. v-if="itemInfo.order"
  6. >
  7. <view class="title">
  8. <view class="title-left">
  9. <image class="header-img" :src="itemInfo.image" mode=""></image>
  10. <text>{{ itemInfo.merchant_name }}</text>
  11. <image
  12. class="right-325"
  13. src="../../../static/mine/325.png"
  14. mode=""
  15. ></image>
  16. </view>
  17. <text
  18. class="order-status"
  19. :style="itemInfo.order.simplify_status == 'closed' ? 'color:#666' : ''"
  20. >{{ itemInfo.order.simplify_status_text }}</text
  21. >
  22. </view>
  23. <view
  24. class="commodity-information"
  25. v-for="item in itemInfo.order_goods"
  26. :key="item.id"
  27. >
  28. <view class="commodity-1">
  29. <image
  30. class="commodity-img"
  31. :src="item.sku_item.image || item.goods_image"
  32. mode=""
  33. ></image>
  34. <view style="width: 70%">
  35. <view class="commodity-2">
  36. <view class="commodity-title" v-if="language == 'zh-CN'">
  37. {{ item.goods.name_cn }}
  38. </view>
  39. <view class="commodity-title" v-if="language == 'en-US'">
  40. {{ item.goods.name_en }}
  41. </view>
  42. <view class="commodity-title" v-if="language == 'es-ES'">
  43. {{ item.goods.name_es }}
  44. </view>
  45. <view class="commodity-title" v-if="language == 'it-IT'">
  46. {{ item.goods.name_ita }}
  47. </view>
  48. <view class="commodity-price" v-if="item.sku_item">
  49. <text style="font-size: 20rpx">¥</text>
  50. <text>{{ item.discount_price.split(".")[0] }}</text
  51. >.
  52. <text style="font-size: 20rpx">{{
  53. item.discount_price.split(".")[1]
  54. }}</text>
  55. </view>
  56. </view>
  57. <view class="commodity-3">
  58. <view class="specifications"> {{ item.sku_item.item }} </view>
  59. <view style="font-size: 24rpx"> x{{ item.goods_num }} </view>
  60. </view>
  61. <!-- 测试提需求去掉 -->
  62. <!-- <button
  63. v-if="itemInfo.order.status == 'unreview' && !item.refund"
  64. @click.stop="$emit('unreviewAfter', item)"
  65. class="application"
  66. >
  67. 申请退款
  68. </button> -->
  69. </view>
  70. </view>
  71. </view>
  72. <view class="price">
  73. <text>{{ i18n.paymentRequired }}</text>
  74. <text style="font-size: 20rpx">¥</text>
  75. <text>{{ itemInfo.order.amount.split(".")[0] }}</text
  76. >.
  77. <text style="font-size: 20rpx">{{
  78. itemInfo.order.amount.split(".")[1]
  79. }}</text>
  80. </view>
  81. <view class="btn-list">
  82. <view
  83. class="more"
  84. v-if="itemInfo.order.simplify_status == 'finished'"
  85. @click.stop="more"
  86. >
  87. {{ i18n.more }}
  88. </view>
  89. <button
  90. class="status-1"
  91. @click.stop="$emit('cancellationOrder', itemInfo)"
  92. v-if="itemInfo.order.simplify_status == 'unpaid'"
  93. >
  94. {{ i18n.cancellationOrder }}
  95. </button>
  96. <button
  97. class="status-2"
  98. v-if="itemInfo.order.simplify_status == 'unpaid'"
  99. @click.stop="$emit('toPay', itemInfo)"
  100. >
  101. {{ i18n.continuePayment }}
  102. </button>
  103. <button
  104. class="status-1"
  105. @click.stop="$emit('deleteOrder', itemInfo)"
  106. v-if="
  107. itemInfo.order.simplify_status == 'closed' ||
  108. itemInfo.order.simplify_status == 'refund'
  109. "
  110. >
  111. {{ i18n.deleteOrder }}
  112. </button>
  113. <button
  114. class="status-2"
  115. v-if="itemInfo.order.simplify_status == 'closed'"
  116. @click.stop="$emit('againOrder', itemInfo)"
  117. >
  118. {{ i18n.buyAgain }}
  119. </button>
  120. <button
  121. class="status-1"
  122. @click.stop="$emit('toLogistics', itemInfo)"
  123. v-if="
  124. itemInfo.order.simplify_status == 'delivered' ||
  125. itemInfo.order.simplify_status == 'finished'
  126. "
  127. >
  128. {{ i18n.checkLogistics }}
  129. </button>
  130. <button
  131. class="status-1"
  132. v-if="
  133. itemInfo.order.simplify_status == 'refund' ||
  134. itemInfo.order.simplify_status == 'finished'
  135. "
  136. @click.stop="$emit('againOrder', itemInfo)"
  137. >
  138. {{ i18n.anotherOrder }}
  139. </button>
  140. <button
  141. class="status-2"
  142. v-if="itemInfo.order.simplify_status == 'delivered'"
  143. @click.stop="$emit('confirm', itemInfo)"
  144. >
  145. {{ i18n.confirmReceipt }}
  146. </button>
  147. <button
  148. class="status-2"
  149. v-if="itemInfo.order.simplify_status == 'finished'"
  150. @click.stop="$emit('toDetail', itemInfo)"
  151. >
  152. {{ i18n.toEvaluate }}
  153. </button>
  154. <u-transition :show="show">
  155. <view class="transition" @click.stop="$emit('deleteOrder', itemInfo)">{{
  156. i18n.deleteOrder
  157. }}</view>
  158. </u-transition>
  159. </view>
  160. </view>
  161. </template>
  162. <script>
  163. import textRight from "../../accountSecurity/component/textRight.vue";
  164. export default {
  165. components: {
  166. textRight,
  167. },
  168. props: {
  169. itemInfo: {
  170. typeof: Object,
  171. default: {},
  172. },
  173. language: {
  174. typeof: String,
  175. default: "",
  176. },
  177. },
  178. computed: {
  179. i18n() {
  180. return this.$t("index");
  181. },
  182. },
  183. data() {
  184. return {
  185. show: false,
  186. };
  187. },
  188. methods: {
  189. more() {
  190. this.show = !this.show;
  191. },
  192. },
  193. };
  194. </script>
  195. <style scoped lang="scss">
  196. .detail {
  197. padding: 28rpx 20rpx;
  198. background-color: #fff;
  199. border-radius: 16rpx;
  200. margin-top: 28rpx;
  201. .title {
  202. display: flex;
  203. justify-content: space-between;
  204. .title-left {
  205. display: flex;
  206. font-size: 32rpx;
  207. align-items: center;
  208. .header-img {
  209. width: 36rpx;
  210. height: 36rpx;
  211. border-radius: 50%;
  212. margin-right: 20rpx;
  213. }
  214. .right-325 {
  215. width: 32rpx;
  216. height: 32rpx;
  217. }
  218. }
  219. .order-status {
  220. color: #f83224;
  221. font-size: 26rpx;
  222. }
  223. }
  224. .commodity-information {
  225. margin-top: 28rpx;
  226. .commodity-1 {
  227. display: flex;
  228. .commodity-img {
  229. width: 180rpx;
  230. height: 180rpx;
  231. margin-right: 20rpx;
  232. border-radius: 10rpx;
  233. }
  234. .commodity-2 {
  235. display: flex;
  236. justify-content: space-between;
  237. .commodity-title {
  238. width: 328rpx;
  239. overflow: hidden;
  240. white-space: nowrap;
  241. text-overflow: ellipsis;
  242. margin-right: 38rpx;
  243. }
  244. }
  245. .commodity-3 {
  246. display: flex;
  247. justify-content: space-between;
  248. margin-top: 20rpx;
  249. color: #777;
  250. .specifications {
  251. font-size: 28rpx;
  252. color: #777;
  253. }
  254. }
  255. .application {
  256. background-color: #fff;
  257. border-radius: 34rpx;
  258. padding: 0;
  259. margin: 0;
  260. // padding: 0 26rpx;
  261. font-size: 28rpx;
  262. color: #222;
  263. height: 58rpx;
  264. line-height: 58rpx;
  265. margin-left: 20rpx;
  266. border: 2rpx solid #979797;
  267. margin-top: 10rpx;
  268. width: 140rpx;
  269. font-size: 22rpx;
  270. float: right;
  271. }
  272. }
  273. }
  274. .price {
  275. display: flex;
  276. justify-content: flex-end;
  277. font-size: 28rpx;
  278. align-items: flex-end;
  279. }
  280. .btn-list {
  281. display: flex;
  282. justify-content: flex-end;
  283. margin-top: 34rpx;
  284. position: relative;
  285. .more {
  286. color: #777;
  287. font-size: 28rpx;
  288. line-height: 68rpx;
  289. margin-right: 20rpx;
  290. }
  291. .status-1 {
  292. background-color: #fff;
  293. border-radius: 34rpx;
  294. margin: 0;
  295. padding: 0;
  296. font-size: 28rpx;
  297. color: #222;
  298. width: 168rpx;
  299. height: 68rpx;
  300. line-height: 68rpx;
  301. margin-left: 20rpx;
  302. border: 2rpx solid #979797;
  303. }
  304. .status-2 {
  305. background-color: #ffffff;
  306. border-radius: 34rpx;
  307. margin: 0;
  308. padding: 0;
  309. font-size: 28rpx;
  310. color: #f83224;
  311. width: 168rpx;
  312. height: 68rpx;
  313. line-height: 68rpx;
  314. margin-left: 20rpx;
  315. border: 2rpx solid #f83224;
  316. }
  317. }
  318. }
  319. .transition {
  320. width: 164rpx;
  321. height: 88rpx;
  322. background: #ffffff;
  323. box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
  324. position: absolute;
  325. bottom: 60rpx;
  326. left: 0;
  327. text-align: center;
  328. line-height: 88rpx;
  329. font-size: 26rpx;
  330. color: #222;
  331. z-index: 10000;
  332. }
  333. </style>