commodityDetail.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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
  9. class="right-325"
  10. src="../../../static/mine/325.png"
  11. mode=""
  12. ></image>
  13. </view>
  14. </view>
  15. <view class="commodity-information">
  16. <view class="commodity-1">
  17. <image
  18. class="commodity-img"
  19. :src="item.sku_item.image"
  20. mode=""
  21. ></image>
  22. <view
  23. class=""
  24. style="
  25. height: 180rpx;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: space-between;
  29. "
  30. >
  31. <view class="">
  32. <view class="commodity-2">
  33. <view class="commodity-title" v-if="language == 'zh-CN'"
  34. >{{ item.goods.name_cn }}
  35. </view>
  36. <view class="commodity-title" v-if="language == 'en-US'"
  37. >{{ item.goods.name_en }}
  38. </view>
  39. <view class="commodity-title" v-if="language == 'es-ES'"
  40. >{{ item.goods.name_es }}
  41. </view>
  42. <view class="commodity-title" v-if="language == 'it-IT'"
  43. >{{ item.goods.name_ita }}
  44. </view>
  45. <view class="commodity-price">
  46. <text style="font-size: 20rpx">¥</text>
  47. <text>{{ item.discount_price.split(".")[0] }}</text
  48. >.
  49. <text style="font-size: 20rpx">{{
  50. item.discount_price.split(".")[1]
  51. }}</text>
  52. </view>
  53. </view>
  54. <view class="commodity-3">
  55. <view class="specifications"> {{ item.sku_item.item }} </view>
  56. <view style="font-size: 24rpx"> x{{ item.goods_num }} </view>
  57. </view>
  58. </view>
  59. <view
  60. v-if="orderDetail.simplify_status == 'finished'"
  61. class=""
  62. style="display: flex; justify-content: space-between"
  63. >
  64. <view class=""></view>
  65. <view
  66. @click="toping(item)"
  67. class=""
  68. style="
  69. border: #f83224 solid 2rpx;
  70. min-width: 80rpx;
  71. height: 40rpx;
  72. line-height: 40rpx;
  73. color: #f83224;
  74. border-radius: 20rpx;
  75. text-align: center;
  76. "
  77. >
  78. {{ i18n.evaluate }}
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. <view
  84. class="btn-list"
  85. v-if="
  86. orderDetail.simplify_status == 'paid' ||
  87. orderDetail.simplify_status == 'undelivered' ||
  88. orderDetail.simplify_status == 'unreview' ||
  89. orderDetail.simplify_status == 'merdelivered'
  90. "
  91. >
  92. <!-- status就是 状态 0未审核 1已通过 2未通过 3平台介入 -->
  93. <button
  94. @click="platformIntervene(item)"
  95. v-if="
  96. item.refund &&
  97. (item.refund.status == 2 ||
  98. item.refund.status == 0 ||
  99. item.refund.status == 3)
  100. "
  101. >
  102. {{ i18n.platformIntervention }}
  103. </button>
  104. <button
  105. @click="toRefundDetail(item)"
  106. v-if="
  107. item.refund &&
  108. (item.refund.status == 0 ||
  109. item.refund.status == 1 ||
  110. item.refund.status == 2 ||
  111. item.refund.status == 3)
  112. "
  113. >
  114. 退款详情
  115. </button>
  116. <button
  117. @click="application(item)"
  118. v-if="item.refund && item.refund.status == 2"
  119. >
  120. {{ i18n.ContinueApply }}
  121. </button>
  122. <button v-if="!item.refund" @click="application(item)">
  123. {{ i18n.requestRefund }}
  124. </button>
  125. </view>
  126. </view>
  127. </view>
  128. <view class="information">
  129. <text class="_label">{{ i18n.goodsPrice }}</text>
  130. <view style="color: #222; font-weight: 600" v-if="orderDetail.freight">
  131. <text style="font-size: 20rpx">¥</text>
  132. <text>{{ orderDetail.goods_amount.split(".")[0] }}</text
  133. >.
  134. <text style="font-size: 20rpx">{{
  135. orderDetail.goods_amount.split(".")[1]
  136. }}</text>
  137. </view>
  138. </view>
  139. <view class="information">
  140. <text class="_label">{{ i18n.goodsWeight }}</text>
  141. <view class="_title-right"> {{ orderDetail.weight_total || 0 }}Kg </view>
  142. </view>
  143. <view class="information">
  144. <text class="_label">{{ i18n.flow }}</text>
  145. <view lass="_title-right">
  146. {{ orderDetail.container.transport_type.name_cn }} |
  147. {{ orderDetail.container.name_cn }}
  148. </view>
  149. </view>
  150. <view class="information last">
  151. <text class="_label">{{ i18n.freight }}</text>
  152. <view style="color: #222; font-weight: 600" v-if="orderDetail.freight">
  153. <text style="font-size: 20rpx">¥</text>
  154. <text>{{ orderDetail.freight.split(".")[0] }}</text
  155. >.
  156. <text style="font-size: 20rpx">{{
  157. orderDetail.freight.split(".")[1]
  158. }}</text>
  159. </view>
  160. </view>
  161. <view class="_bottom">
  162. <text class="_label">{{ i18n.accountsPayable }} </text>
  163. <view
  164. style="color: #f83224; margin-left: 10rpx; font-weight: 600"
  165. v-if="orderDetail.amount"
  166. >
  167. <text style="font-size: 20rpx">¥</text>
  168. <text>{{ orderDetail.amount.split(".")[0] }}</text
  169. >.
  170. <text style="font-size: 20rpx">{{
  171. orderDetail.amount.split(".")[1]
  172. }}</text>
  173. </view>
  174. </view>
  175. </view>
  176. </template>
  177. <script>
  178. import textRight from "../../accountSecurity/component/textRight.vue";
  179. export default {
  180. components: {
  181. textRight,
  182. },
  183. props: {
  184. status: {
  185. typeof: Number,
  186. default: 0,
  187. },
  188. orderDetail: {
  189. typeof: Object,
  190. default: () => {
  191. return {};
  192. },
  193. },
  194. language: {
  195. typeof: String,
  196. default: "",
  197. },
  198. },
  199. data() {
  200. return {};
  201. },
  202. computed: {
  203. i18n() {
  204. return this.$t("index");
  205. },
  206. },
  207. methods: {
  208. //评论
  209. toping(item) {
  210. console.log(item);
  211. uni.navigateTo({
  212. url: "/pageD/evaluate/evaluate?goods=" + JSON.stringify(item),
  213. });
  214. },
  215. //申请退款
  216. application(value) {
  217. uni.navigateTo({
  218. url: `/pageC/applicationRefund/applicationRefund?orderId=${value.id}`,
  219. });
  220. },
  221. //售后订单详情
  222. toRefundDetail(value) {
  223. uni.navigateTo({
  224. url: `/pageC/refundDetail/refundDetail?orderId=${value.refund.id}`,
  225. });
  226. },
  227. //申请平台介入
  228. platformIntervene(value) {
  229. if (value.refund.status != 3) {
  230. uni.$u.http
  231. .post(`/api/order_refund/platform_intervention`, {
  232. order_refund_id: value.refund.id,
  233. })
  234. .then((res) => {
  235. uni.showToast({
  236. title: "已申请平台介入",
  237. icon: "none",
  238. });
  239. });
  240. } else {
  241. uni.showToast({
  242. title: "平台已介入",
  243. icon: "none",
  244. });
  245. }
  246. },
  247. },
  248. };
  249. </script>
  250. <style scoped lang="scss">
  251. .detail {
  252. padding: 28rpx 20rpx;
  253. background-color: #fff;
  254. border-radius: 16rpx;
  255. margin-top: 28rpx;
  256. .title {
  257. display: flex;
  258. justify-content: space-between;
  259. margin-top: 20rpx;
  260. .title-left {
  261. display: flex;
  262. font-size: 32rpx;
  263. align-items: center;
  264. .header-img {
  265. width: 36rpx;
  266. height: 36rpx;
  267. border-radius: 50%;
  268. margin-right: 20rpx;
  269. }
  270. .right-325 {
  271. width: 32rpx;
  272. height: 32rpx;
  273. }
  274. }
  275. .order-status {
  276. color: #f83224;
  277. font-size: 26rpx;
  278. }
  279. }
  280. .commodity-information {
  281. margin-top: 28rpx;
  282. .commodity-1 {
  283. display: flex;
  284. .commodity-img {
  285. width: 180rpx;
  286. height: 180rpx;
  287. margin-right: 20rpx;
  288. border-radius: 10rpx;
  289. }
  290. .commodity-2 {
  291. display: flex;
  292. justify-content: space-between;
  293. .commodity-title {
  294. width: 328rpx;
  295. overflow: hidden;
  296. white-space: nowrap;
  297. text-overflow: ellipsis;
  298. margin-right: 38rpx;
  299. }
  300. }
  301. .commodity-3 {
  302. display: flex;
  303. justify-content: space-between;
  304. margin-top: 20rpx;
  305. color: #777;
  306. .specifications {
  307. font-size: 28rpx;
  308. color: #777;
  309. }
  310. }
  311. }
  312. }
  313. .last {
  314. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  315. padding-bottom: 20rpx;
  316. }
  317. .btn-list {
  318. display: flex;
  319. justify-content: flex-end;
  320. button {
  321. width: 152rpx;
  322. height: 58rpx;
  323. border: 2rpx solid #979797;
  324. color: #444;
  325. margin: 0;
  326. padding: 0;
  327. font-size: 24rpx;
  328. background-color: #fff;
  329. border-radius: 34rpx;
  330. margin-top: 20rpx;
  331. margin-left: 20rpx;
  332. }
  333. }
  334. .information {
  335. display: flex;
  336. justify-content: space-between;
  337. font-size: 28rpx;
  338. align-items: flex-end;
  339. margin: 34rpx 0;
  340. ._label {
  341. font-size: 28rpx;
  342. color: #333;
  343. }
  344. ._title-right {
  345. font-size: 28rpx;
  346. color: #333;
  347. }
  348. }
  349. ._bottom {
  350. display: flex;
  351. justify-content: flex-end;
  352. font-size: 28rpx;
  353. align-items: flex-end;
  354. margin-top: 34rpx;
  355. }
  356. }
  357. </style>