orderInofrmation.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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.status == 'closed' ? 'color:#666' : ''"
  20. >{{ statusName }}</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 class="commodity-img" :src="item.goods_image" mode=""></image>
  30. <view style="width: 70%">
  31. <view class="commodity-2">
  32. <view class="commodity-title"> {{ item.goods.name_cn }} </view>
  33. <view class="commodity-price">
  34. <text style="font-size: 20rpx">¥</text>
  35. <text>{{ item.goods.price.split(".")[0] }}</text
  36. >.
  37. <text style="font-size: 20rpx">{{
  38. item.goods.price.split(".")[1]
  39. }}</text>
  40. </view>
  41. </view>
  42. <view class="commodity-3">
  43. <view class="specifications"> {{ item.sku_item.item }} </view>
  44. <view style="font-size: 24rpx"> x{{ item.goods_num }} </view>
  45. </view>
  46. <button
  47. v-if="itemInfo.order.status == 'unreview'"
  48. @click.stop="$emit('unreviewAfter', item)"
  49. class="application"
  50. >
  51. 申请退款
  52. </button>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="price">
  57. <text>需付款</text>
  58. <text style="font-size: 20rpx">¥</text>
  59. <text>{{ itemInfo.order.amount.split(".")[0] }}</text
  60. >.
  61. <text style="font-size: 20rpx">{{
  62. itemInfo.order.amount.split(".")[1]
  63. }}</text>
  64. </view>
  65. <view class="btn-list">
  66. <view class="more" v-if="itemInfo.order.status == 'finished'">
  67. 更多
  68. </view>
  69. <button
  70. class="status-1"
  71. @click.stop="$emit('cancellationOrder', itemInfo)"
  72. v-if="itemInfo.order.status == 'unpaid'"
  73. >
  74. 取消订单
  75. </button>
  76. <button
  77. class="status-2"
  78. v-if="itemInfo.order.status == 'unpaid'"
  79. @click.stop="$emit('toPay', itemInfo)"
  80. >
  81. 继续付款
  82. </button>
  83. <button
  84. class="status-1"
  85. v-if="
  86. itemInfo.order.status == 'closed' || itemInfo.order.status == 'refund'
  87. "
  88. >
  89. 删除订单
  90. </button>
  91. <button class="status-2" v-if="itemInfo.order.status == 'closed'">
  92. 再次购买
  93. </button>
  94. <button
  95. class="status-1"
  96. v-if="
  97. itemInfo.order.status == 'delivered' ||
  98. itemInfo.order.status == 'finished'
  99. "
  100. >
  101. 查看物流
  102. </button>
  103. <button
  104. class="status-1"
  105. v-if="
  106. itemInfo.order.status == 'refund' ||
  107. itemInfo.order.status == 'finished'
  108. "
  109. >
  110. 再来一单
  111. </button>
  112. <button
  113. class="status-2"
  114. v-if="itemInfo.order.status == 'delivered'"
  115. @click.stop="$emit('confirm', itemInfo)"
  116. >
  117. 确认收货
  118. </button>
  119. <button
  120. class="status-2"
  121. v-if="itemInfo.order.status == 'finished'"
  122. @click.stop="$emit('toEvaluate', itemInfo)"
  123. >
  124. 评价
  125. </button>
  126. </view>
  127. </view>
  128. </template>
  129. <script>
  130. import textRight from "../../accountSecurity/component/textRight.vue";
  131. export default {
  132. components: {
  133. textRight,
  134. },
  135. props: {
  136. itemInfo: {
  137. typeof: Object,
  138. default: {},
  139. },
  140. },
  141. computed: {
  142. statusName() {
  143. if (this.itemInfo.order.status == "unpaid") {
  144. return "待付款";
  145. } else if (this.itemInfo.order.status == "closed") {
  146. return "已取消";
  147. } else if (this.itemInfo.order.status == "refund") {
  148. return "退款成功";
  149. } else if (this.itemInfo.order.status == "refunding") {
  150. return "退款中";
  151. } else if (this.itemInfo.order.status == "unreview") {
  152. return "拼团中";
  153. } else if (
  154. this.itemInfo.order.status == "undelivered" ||
  155. this.itemInfo.order.status == "paid"
  156. ) {
  157. return "等待发货";
  158. } else if (this.itemInfo.order.status == "delivered") {
  159. return "等待收货";
  160. } else if (this.itemInfo.order.status == "finished") {
  161. return "交易完成";
  162. }
  163. },
  164. },
  165. data() {
  166. return {};
  167. },
  168. watch: {
  169. itemInfo(newVal) {},
  170. },
  171. methods: {
  172. // toEvaluate() {
  173. // uni.navigateTo({
  174. // url: "/pageD/evaluate/evaluate?",
  175. // });
  176. // },
  177. },
  178. };
  179. </script>
  180. <style scoped lang="scss">
  181. .detail {
  182. padding: 28rpx 20rpx;
  183. background-color: #fff;
  184. border-radius: 16rpx;
  185. margin-top: 28rpx;
  186. .title {
  187. display: flex;
  188. justify-content: space-between;
  189. .title-left {
  190. display: flex;
  191. font-size: 32rpx;
  192. align-items: center;
  193. .header-img {
  194. width: 36rpx;
  195. height: 36rpx;
  196. border-radius: 50%;
  197. margin-right: 20rpx;
  198. }
  199. .right-325 {
  200. width: 32rpx;
  201. height: 32rpx;
  202. }
  203. }
  204. .order-status {
  205. color: #f83224;
  206. font-size: 26rpx;
  207. }
  208. }
  209. .commodity-information {
  210. margin-top: 28rpx;
  211. .commodity-1 {
  212. display: flex;
  213. .commodity-img {
  214. width: 180rpx;
  215. height: 180rpx;
  216. margin-right: 20rpx;
  217. border-radius: 10rpx;
  218. }
  219. .commodity-2 {
  220. display: flex;
  221. justify-content: space-between;
  222. .commodity-title {
  223. width: 328rpx;
  224. overflow: hidden;
  225. white-space: nowrap;
  226. text-overflow: ellipsis;
  227. margin-right: 38rpx;
  228. }
  229. }
  230. .commodity-3 {
  231. display: flex;
  232. justify-content: space-between;
  233. margin-top: 20rpx;
  234. color: #777;
  235. .specifications {
  236. font-size: 28rpx;
  237. color: #777;
  238. }
  239. }
  240. .application {
  241. background-color: #fff;
  242. border-radius: 34rpx;
  243. padding: 0;
  244. margin: 0;
  245. // padding: 0 26rpx;
  246. font-size: 28rpx;
  247. color: #222;
  248. height: 58rpx;
  249. line-height: 58rpx;
  250. margin-left: 20rpx;
  251. border: 2rpx solid #979797;
  252. margin-top: 10rpx;
  253. width: 140rpx;
  254. font-size: 22rpx;
  255. float: right;
  256. }
  257. }
  258. }
  259. .price {
  260. display: flex;
  261. justify-content: flex-end;
  262. font-size: 28rpx;
  263. align-items: flex-end;
  264. }
  265. .btn-list {
  266. display: flex;
  267. justify-content: flex-end;
  268. margin-top: 34rpx;
  269. .more {
  270. color: #777;
  271. font-size: 28rpx;
  272. line-height: 68rpx;
  273. margin-right: 20rpx;
  274. }
  275. .status-1 {
  276. background-color: #fff;
  277. border-radius: 34rpx;
  278. margin: 0;
  279. padding: 0;
  280. font-size: 28rpx;
  281. color: #222;
  282. width: 168rpx;
  283. height: 68rpx;
  284. line-height: 68rpx;
  285. margin-left: 20rpx;
  286. border: 2rpx solid #979797;
  287. }
  288. .status-2 {
  289. background-color: #ffffff;
  290. border-radius: 34rpx;
  291. margin: 0;
  292. padding: 0;
  293. font-size: 28rpx;
  294. color: #f83224;
  295. width: 168rpx;
  296. height: 68rpx;
  297. line-height: 68rpx;
  298. margin-left: 20rpx;
  299. border: 2rpx solid #f83224;
  300. }
  301. }
  302. }
  303. </style>