orderInofrmation.vue 6.9 KB

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