commodityDetail.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. <template>
  2. <view class="detail">
  3. <view v-for="item in orderDetail.goods" :key="item.id">
  4. <view class="title">
  5. <view class="title-left">
  6. <image class="header-img" :src="item.merchant.image" mode=""></image>
  7. <text>{{ item.merchant.merchant_name }}</text>
  8. <image class="right-325" src="../../../static/mine/325.png" mode=""></image>
  9. </view>
  10. </view>
  11. <view class="commodity-information">
  12. <view class="commodity-1">
  13. <image class="commodity-img" :src="item.sku_item.image" mode=""></image>
  14. <view class="" style="height: 180rpx;display: flex;flex-direction: column;justify-content: space-between;">
  15. <view class="">
  16. <view class="commodity-2">
  17. <view class="commodity-title">{{ item.goods_name }} </view>
  18. <view class="commodity-price">
  19. <text style="font-size: 20rpx">¥</text>
  20. <text>{{ item.discount_price.split(".")[0] }}</text>.
  21. <text style="font-size: 20rpx">{{
  22. item.discount_price.split(".")[1]
  23. }}</text>
  24. </view>
  25. </view>
  26. <view class="commodity-3">
  27. <view class="specifications"> {{ item.sku_item.item }} </view>
  28. <view style="font-size: 24rpx"> x{{ item.goods_num }} </view>
  29. </view>
  30. </view>
  31. <view v-if="orderDetail.simplify_status == 'finished'" class="" style="display: flex;justify-content: space-between;">
  32. <view class=""></view>
  33. <view @click="toping(item)" class="" style="border: #f83224 solid 2rpx;min-width: 80rpx;height: 40rpx;line-height: 40rpx;color: #f83224;border-radius: 20rpx;text-align: center;">
  34. 评价
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="btn-list" v-if="
  40. orderDetail.simplify_status == 'paid' ||
  41. orderDetail.simplify_status == 'undelivered' ||
  42. orderDetail.simplify_status == 'unreview' ||
  43. orderDetail.simplify_status == 'merdelivered'
  44. ">
  45. <!-- status就是 状态 0未审核 1已通过 2未通过 3平台介入 -->
  46. <button @click="platformIntervene(item)" v-if="
  47. item.refund &&
  48. (item.refund.status == 2 ||
  49. item.refund.status == 0 ||
  50. item.refund.status == 3)
  51. ">
  52. 平台介入
  53. </button>
  54. <button @click="toRefundDetail(item)" v-if="
  55. item.refund &&
  56. (item.refund.status == 0 ||
  57. item.refund.status == 1 ||
  58. item.refund.status == 2 ||
  59. item.refund.status == 3)
  60. ">
  61. 退款详情
  62. </button>
  63. <button @click="application(item)" v-if="item.refund && item.refund.status == 2">
  64. 继续申请
  65. </button>
  66. <button v-if="!item.refund" @click="application(item)">
  67. 申请退款
  68. </button>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="information">
  73. <text class="_label">商品总价</text>
  74. <view style="color: #222; font-weight: 600" v-if="orderDetail.freight">
  75. <text style="font-size: 20rpx">¥</text>
  76. <text>{{ orderDetail.goods_amount.split(".")[0] }}</text>.
  77. <text style="font-size: 20rpx">{{
  78. orderDetail.goods_amount.split(".")[1]
  79. }}</text>
  80. </view>
  81. </view>
  82. <view class="information">
  83. <text class="_label">商品总重量</text>
  84. <view class="_title-right"> {{ orderDetail.weight_total || 0 }}Kg </view>
  85. </view>
  86. <view class="information">
  87. <text class="_label">跨境物流</text>
  88. <view lass="_title-right">
  89. {{ orderDetail.container.transport_type.name_cn }} |
  90. {{ orderDetail.container.name_cn }}
  91. </view>
  92. </view>
  93. <view class="information last">
  94. <text class="_label">运费</text>
  95. <view style="color: #222; font-weight: 600" v-if="orderDetail.freight">
  96. <text style="font-size: 20rpx">¥</text>
  97. <text>{{ orderDetail.freight.split(".")[0] }}</text>.
  98. <text style="font-size: 20rpx">{{
  99. orderDetail.freight.split(".")[1]
  100. }}</text>
  101. </view>
  102. </view>
  103. <view class="_bottom">
  104. <text class="_label">应付款 </text>
  105. <view style="color: #f83224; margin-left: 10rpx; font-weight: 600" v-if="orderDetail.amount">
  106. <text style="font-size: 20rpx">¥</text>
  107. <text>{{ orderDetail.amount.split(".")[0] }}</text>.
  108. <text style="font-size: 20rpx">{{
  109. orderDetail.amount.split(".")[1]
  110. }}</text>
  111. </view>
  112. </view>
  113. </view>
  114. </template>
  115. <script>
  116. import textRight from "../../accountSecurity/component/textRight.vue";
  117. export default {
  118. components: {
  119. textRight,
  120. },
  121. props: {
  122. status: {
  123. typeof: Number,
  124. default: 0,
  125. },
  126. orderDetail: {
  127. typeof: Object,
  128. default: () => {
  129. return {};
  130. },
  131. },
  132. },
  133. data() {
  134. return {};
  135. },
  136. methods: {
  137. //评论
  138. toping(item){
  139. console.log(item);
  140. uni.navigateTo({
  141. url:'/pageD/evaluate/evaluate?goods='+JSON.stringify(item)
  142. })
  143. },
  144. //申请退款
  145. application(value) {
  146. uni.navigateTo({
  147. url: `/pageC/applicationRefund/applicationRefund?orderId=${value.id}`,
  148. });
  149. },
  150. //售后订单详情
  151. toRefundDetail(value) {
  152. uni.navigateTo({
  153. url: `/pageC/refundDetail/refundDetail?orderId=${value.refund.id}`,
  154. });
  155. },
  156. //申请平台介入
  157. platformIntervene(value) {
  158. if (value.refund.status != 3) {
  159. uni.$u.http
  160. .post(`/api/order_refund/platform_intervention`, {
  161. order_refund_id: value.refund.id,
  162. })
  163. .then((res) => {
  164. uni.showToast({
  165. title: "已申请平台介入",
  166. icon: "none",
  167. });
  168. });
  169. } else {
  170. uni.showToast({
  171. title: "平台已介入",
  172. icon: "none",
  173. });
  174. }
  175. },
  176. },
  177. };
  178. </script>
  179. <style scoped lang="scss">
  180. .detail {
  181. padding: 28rpx 20rpx;
  182. background-color: #fff;
  183. border-radius: 16rpx;
  184. margin-top: 28rpx;
  185. .title {
  186. display: flex;
  187. justify-content: space-between;
  188. margin-top: 20rpx;
  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. }
  241. }
  242. .last {
  243. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  244. padding-bottom: 20rpx;
  245. }
  246. .btn-list {
  247. display: flex;
  248. justify-content: flex-end;
  249. button {
  250. width: 152rpx;
  251. height: 58rpx;
  252. border: 2rpx solid #979797;
  253. color: #444;
  254. margin: 0;
  255. padding: 0;
  256. font-size: 24rpx;
  257. background-color: #fff;
  258. border-radius: 34rpx;
  259. margin-top: 20rpx;
  260. margin-left: 20rpx;
  261. }
  262. }
  263. .information {
  264. display: flex;
  265. justify-content: space-between;
  266. font-size: 28rpx;
  267. align-items: flex-end;
  268. margin: 34rpx 0;
  269. ._label {
  270. font-size: 28rpx;
  271. color: #333;
  272. }
  273. ._title-right {
  274. font-size: 28rpx;
  275. color: #333;
  276. }
  277. }
  278. ._bottom {
  279. display: flex;
  280. justify-content: flex-end;
  281. font-size: 28rpx;
  282. align-items: flex-end;
  283. margin-top: 34rpx;
  284. }
  285. }
  286. </style>