commodityDetail.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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 || item.goods_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="item.refund && item.refund.status == 0"
  96. >
  97. {{ i18n.platformIntervention }}
  98. </button>
  99. <button
  100. @click="toRefundDetail(item)"
  101. v-if="
  102. item.refund &&
  103. (item.refund.status == 0 ||
  104. item.refund.status == 1 ||
  105. item.refund.status == 2 ||
  106. item.refund.status == 3)
  107. "
  108. >
  109. {{ i18n.refundDetails }}
  110. </button>
  111. <button
  112. @click="application(item)"
  113. v-if="item.refund && item.refund.status == 2"
  114. >
  115. {{ i18n.ContinueApply }}
  116. </button>
  117. <button v-if="!item.refund" @click="application(item)">
  118. {{ i18n.requestRefund }}
  119. </button>
  120. </view>
  121. </view>
  122. </view>
  123. <view class="information">
  124. <text class="_label">{{ i18n.goodsPrice }}</text>
  125. <view style="color: #222; font-weight: 600" v-if="orderDetail.freight">
  126. <text style="font-size: 20rpx">¥</text>
  127. <text>{{ orderDetail.goods_amount.split(".")[0] }}</text
  128. >.
  129. <text style="font-size: 20rpx">{{
  130. orderDetail.goods_amount.split(".")[1]
  131. }}</text>
  132. </view>
  133. </view>
  134. <view class="information">
  135. <text class="_label">{{ i18n.goodsWeight }}</text>
  136. <view class="_title-right"> {{ orderDetail.weight_total || 0 }}Kg </view>
  137. </view>
  138. <view class="information">
  139. <text class="_label">{{ i18n.flow }}</text>
  140. <view lass="_title-right">
  141. <text v-if="language == 'zh-CN'">{{
  142. orderDetail.container.transport_type.name_cn +
  143. "|" +
  144. orderDetail.container.name_cn
  145. }}</text>
  146. <text v-if="language == 'en-US'">{{
  147. orderDetail.container.transport_type.name_en +
  148. "|" +
  149. orderDetail.container.name_en
  150. }}</text>
  151. <text v-if="language == 'es-ES'">{{
  152. orderDetail.container.transport_type.name_es +
  153. "|" +
  154. orderDetail.container.name_es
  155. }}</text>
  156. <text v-if="language == 'it-IT'">{{
  157. orderDetail.container.transport_type.name_ita +
  158. "|" +
  159. orderDetail.container.name_ita
  160. }}</text>
  161. </view>
  162. </view>
  163. <view class="information last">
  164. <text class="_label">{{ i18n.freight }}</text>
  165. <view style="color: #222; font-weight: 600" v-if="orderDetail.freight">
  166. <text style="font-size: 20rpx">¥</text>
  167. <text>{{ orderDetail.freight.split(".")[0] }}</text
  168. >.
  169. <text style="font-size: 20rpx">{{
  170. orderDetail.freight.split(".")[1]
  171. }}</text>
  172. </view>
  173. </view>
  174. <view class="_bottom">
  175. <text class="_label">{{ i18n.accountsPayable }} </text>
  176. <view
  177. style="color: #f83224; margin-left: 10rpx; font-weight: 600"
  178. v-if="orderDetail.amount"
  179. >
  180. <text style="font-size: 20rpx">¥</text>
  181. <text>{{ orderDetail.amount.split(".")[0] }}</text
  182. >.
  183. <text style="font-size: 20rpx">{{
  184. orderDetail.amount.split(".")[1]
  185. }}</text>
  186. </view>
  187. </view>
  188. </view>
  189. </template>
  190. <script>
  191. import textRight from "../../accountSecurity/component/textRight.vue";
  192. export default {
  193. components: {
  194. textRight,
  195. },
  196. props: {
  197. status: {
  198. typeof: Number,
  199. default: 0,
  200. },
  201. orderDetail: {
  202. typeof: Object,
  203. default: () => {
  204. return {};
  205. },
  206. },
  207. language: {
  208. typeof: String,
  209. default: "",
  210. },
  211. },
  212. data() {
  213. return {};
  214. },
  215. computed: {
  216. i18n() {
  217. return this.$t("index");
  218. },
  219. },
  220. methods: {
  221. //评论
  222. toping(item) {
  223. console.log(item);
  224. uni.navigateTo({
  225. url:
  226. "/pageD/evaluate/evaluate?goods=" +
  227. encodeURIComponent(JSON.stringify(item)),
  228. });
  229. },
  230. //申请退款
  231. application(value) {
  232. uni.navigateTo({
  233. url: `/pageC/applicationRefund/applicationRefund?orderId=${value.id}`,
  234. });
  235. },
  236. //售后订单详情
  237. toRefundDetail(value) {
  238. uni.navigateTo({
  239. url: `/pageC/refundDetail/refundDetail?orderId=${value.refund.id}`,
  240. });
  241. },
  242. //申请平台介入
  243. platformIntervene(value) {
  244. if (value.refund.status != 3) {
  245. uni.$u.http
  246. .post(`/api/order_refund/platform_intervention`, {
  247. order_refund_id: value.refund.id,
  248. })
  249. .then((res) => {
  250. uni.showToast({
  251. title: "已申请平台介入",
  252. icon: "none",
  253. });
  254. });
  255. } else {
  256. uni.showToast({
  257. title: "平台已介入",
  258. icon: "none",
  259. });
  260. }
  261. },
  262. },
  263. };
  264. </script>
  265. <style scoped lang="scss">
  266. .detail {
  267. padding: 28rpx 20rpx;
  268. background-color: #fff;
  269. border-radius: 16rpx;
  270. margin-top: 28rpx;
  271. .title {
  272. display: flex;
  273. justify-content: space-between;
  274. margin-top: 20rpx;
  275. .title-left {
  276. display: flex;
  277. font-size: 32rpx;
  278. align-items: center;
  279. .header-img {
  280. width: 36rpx;
  281. height: 36rpx;
  282. border-radius: 50%;
  283. margin-right: 20rpx;
  284. }
  285. .right-325 {
  286. width: 32rpx;
  287. height: 32rpx;
  288. }
  289. }
  290. .order-status {
  291. color: #f83224;
  292. font-size: 26rpx;
  293. }
  294. }
  295. .commodity-information {
  296. margin-top: 28rpx;
  297. .commodity-1 {
  298. display: flex;
  299. .commodity-img {
  300. width: 180rpx;
  301. height: 180rpx;
  302. margin-right: 20rpx;
  303. border-radius: 10rpx;
  304. }
  305. .commodity-2 {
  306. display: flex;
  307. justify-content: space-between;
  308. .commodity-title {
  309. width: 328rpx;
  310. overflow: hidden;
  311. white-space: nowrap;
  312. text-overflow: ellipsis;
  313. margin-right: 38rpx;
  314. }
  315. }
  316. .commodity-3 {
  317. display: flex;
  318. justify-content: space-between;
  319. margin-top: 20rpx;
  320. color: #777;
  321. .specifications {
  322. font-size: 28rpx;
  323. color: #777;
  324. }
  325. }
  326. }
  327. }
  328. .last {
  329. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  330. padding-bottom: 20rpx;
  331. }
  332. .btn-list {
  333. display: flex;
  334. justify-content: flex-end;
  335. button {
  336. width: 152rpx;
  337. height: 58rpx;
  338. border: 2rpx solid #979797;
  339. color: #444;
  340. margin: 0;
  341. padding: 0;
  342. font-size: 24rpx;
  343. background-color: #fff;
  344. border-radius: 34rpx;
  345. margin-top: 20rpx;
  346. margin-left: 20rpx;
  347. }
  348. }
  349. .information {
  350. display: flex;
  351. justify-content: space-between;
  352. font-size: 28rpx;
  353. align-items: flex-end;
  354. margin: 34rpx 0;
  355. ._label {
  356. font-size: 28rpx;
  357. color: #333;
  358. }
  359. ._title-right {
  360. font-size: 28rpx;
  361. color: #333;
  362. }
  363. }
  364. ._bottom {
  365. display: flex;
  366. justify-content: flex-end;
  367. font-size: 28rpx;
  368. align-items: flex-end;
  369. margin-top: 34rpx;
  370. }
  371. }
  372. </style>