orderInofrmation.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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 class="commodity-img" :src="item.sku_item.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" v-if="item.sku_item">
  34. <text style="font-size: 20rpx">¥</text>
  35. <text>{{ item.discount_price.split(".")[0] }}</text
  36. >.
  37. <text style="font-size: 20rpx">{{
  38. item.discount_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. <!-- 测试提需求去掉 -->
  47. <!-- <button
  48. v-if="itemInfo.order.status == 'unreview' && !item.refund"
  49. @click.stop="$emit('unreviewAfter', item)"
  50. class="application"
  51. >
  52. 申请退款
  53. </button> -->
  54. </view>
  55. </view>
  56. </view>
  57. <view class="price">
  58. <text>需付款</text>
  59. <text style="font-size: 20rpx">¥</text>
  60. <text>{{ itemInfo.order.amount.split(".")[0] }}</text
  61. >.
  62. <text style="font-size: 20rpx">{{
  63. itemInfo.order.amount.split(".")[1]
  64. }}</text>
  65. </view>
  66. <view class="btn-list">
  67. <view
  68. class="more"
  69. v-if="itemInfo.order.simplify_status == 'finished'"
  70. @click.stop="more"
  71. >
  72. 更多
  73. </view>
  74. <button
  75. class="status-1"
  76. @click.stop="$emit('cancellationOrder', itemInfo)"
  77. v-if="itemInfo.order.simplify_status == 'unpaid'"
  78. >
  79. 取消订单
  80. </button>
  81. <button
  82. class="status-2"
  83. v-if="itemInfo.order.simplify_status == 'unpaid'"
  84. @click.stop="$emit('toPay', itemInfo)"
  85. >
  86. 继续付款
  87. </button>
  88. <button
  89. class="status-1"
  90. @click.stop="$emit('deleteOrder', itemInfo)"
  91. v-if="
  92. itemInfo.order.simplify_status == 'closed' ||
  93. itemInfo.order.simplify_status == 'refund'
  94. "
  95. >
  96. 删除订单
  97. </button>
  98. <button
  99. class="status-2"
  100. v-if="itemInfo.order.simplify_status == 'closed'"
  101. @click.stop="$emit('againOrder', itemInfo)"
  102. >
  103. 再次购买
  104. </button>
  105. <button
  106. class="status-1"
  107. @click.stop="$emit('toLogistics', itemInfo)"
  108. v-if="
  109. itemInfo.order.simplify_status == 'delivered' ||
  110. itemInfo.order.simplify_status == 'finished'
  111. "
  112. >
  113. 查看物流
  114. </button>
  115. <button
  116. class="status-1"
  117. v-if="
  118. itemInfo.order.simplify_status == 'refund' ||
  119. itemInfo.order.simplify_status == 'finished'
  120. "
  121. @click.stop="$emit('againOrder', itemInfo)"
  122. >
  123. 再来一单
  124. </button>
  125. <button
  126. class="status-2"
  127. v-if="itemInfo.order.simplify_status == 'delivered'"
  128. @click.stop="$emit('confirm', itemInfo)"
  129. >
  130. 确认收货
  131. </button>
  132. <button
  133. class="status-2"
  134. v-if="itemInfo.order.simplify_status == 'finished'"
  135. @click.stop="$emit('toEvaluate', itemInfo)"
  136. >
  137. 评价
  138. </button>
  139. <u-transition :show="show">
  140. <view class="transition" @click.stop="$emit('deleteOrder', itemInfo)"
  141. >删除订单</view
  142. >
  143. </u-transition>
  144. </view>
  145. </view>
  146. </template>
  147. <script>
  148. import textRight from "../../accountSecurity/component/textRight.vue";
  149. export default {
  150. components: {
  151. textRight,
  152. },
  153. props: {
  154. itemInfo: {
  155. typeof: Object,
  156. default: {},
  157. },
  158. },
  159. computed: {},
  160. data() {
  161. return {
  162. show: false,
  163. };
  164. },
  165. watch: {
  166. itemInfo(newVal) {},
  167. },
  168. methods: {
  169. more() {
  170. this.show = !this.show;
  171. },
  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. position: relative;
  270. .more {
  271. color: #777;
  272. font-size: 28rpx;
  273. line-height: 68rpx;
  274. margin-right: 20rpx;
  275. }
  276. .status-1 {
  277. background-color: #fff;
  278. border-radius: 34rpx;
  279. margin: 0;
  280. padding: 0;
  281. font-size: 28rpx;
  282. color: #222;
  283. width: 168rpx;
  284. height: 68rpx;
  285. line-height: 68rpx;
  286. margin-left: 20rpx;
  287. border: 2rpx solid #979797;
  288. }
  289. .status-2 {
  290. background-color: #ffffff;
  291. border-radius: 34rpx;
  292. margin: 0;
  293. padding: 0;
  294. font-size: 28rpx;
  295. color: #f83224;
  296. width: 168rpx;
  297. height: 68rpx;
  298. line-height: 68rpx;
  299. margin-left: 20rpx;
  300. border: 2rpx solid #f83224;
  301. }
  302. }
  303. }
  304. .transition {
  305. width: 164rpx;
  306. height: 88rpx;
  307. background: #ffffff;
  308. box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
  309. position: absolute;
  310. bottom: 60rpx;
  311. left: 0;
  312. text-align: center;
  313. line-height: 88rpx;
  314. font-size: 26rpx;
  315. color: #222;
  316. z-index: 10000;
  317. }
  318. </style>