index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. <template>
  2. <view class="orderGoods" :style="viewColor">
  3. <view class='goodWrapper' :class="'item'+orderData.order_type">
  4. <view v-if="orderData.order_type == 1" class="title acea-row row-between-wrapper">
  5. <view class="item-status" :class="'status'+evaluate">{{evaluate == 0 ? '待核销' : '已核销'}}</view>
  6. <view v-if="evaluate != 0 && orderData.verify_time" class="item-date">{{orderData.verify_time}}</view>
  7. </view>
  8. <view v-for="(item,index) in cartInfo" :key="index">
  9. <view v-if="activityType === 2">
  10. <view class='item presell_item'>
  11. <view class="acea-row row-between-wrapper">
  12. <view class='pictrue' @click="jumpCon(item)">
  13. <image
  14. :src='(item.cart_info.productAttr && item.cart_info.productAttr.image) || item.cart_info.product.image'>
  15. </image>
  16. </view>
  17. <view class='text'>
  18. <view class='acea-row row-between-wrapper'>
  19. <view class='name line1' style="width: 360rpx;"><text
  20. class="event_name event_bg">预售</text>{{item.cart_info.product.store_name}}
  21. </view>
  22. <view class='num'><text
  23. class="p-color">¥{{item.cart_info.productPresellAttr.presell_price}}</text><br />x
  24. {{item.product_num}}
  25. </view>
  26. </view>
  27. <view class='attr line1' v-if="item.cart_info.productAttr.sku" style="margin-top: 0;">
  28. {{item.cart_info.productAttr.sku}}
  29. </view>
  30. <view v-if="evaluate === 0 || evaluate === 10 || evaluate === 11"
  31. class="event_ship event_color">发货时间:
  32. <!--全款预售-->
  33. <text
  34. v-if="item.cart_info.productPresell.presell_type === 1">{{ item.cart_info.productPresell.delivery_type === 1 ? '支付成功后' : '预售结束后' }}{{ item.cart_info.productPresell.delivery_day }}天内</text>
  35. <!--定金预售-->
  36. <text
  37. v-if="item.cart_info.productPresell.presell_type === 2">{{ item.cart_info.productPresell.delivery_type === 1 ? '支付尾款后' : '预售结束后' }}{{ item.cart_info.productPresell.delivery_day }}天内</text>
  38. </view>
  39. <view class="right-btn-box event_box">
  40. <view class="btn-item"
  41. v-if="item.is_refund ==0 && (evaluate != 10 && evaluate != 11) && orderData.refund_status || item.refund_num > 0"
  42. @click.stop="refund(item)">申请退款</view>
  43. <view class="btn-item err" v-if="item.is_refund ==1">退款中 x
  44. {{item.product_num - item.refund_num}}
  45. </view>
  46. <view class='btn-item err' v-if="item.is_refund >1">已退款 x
  47. {{item.product_num - item.refund_num}}
  48. </view>
  49. <view class='btn-item' v-if='item.is_reply==0 && evaluate==2 && item.is_refund==0'
  50. @click.stop="evaluateTap(item.order_product_id,orderId)">去评价</view>
  51. <view class='btn-item on' v-else-if="item.is_reply==1 && evaluate==2">已评价</view>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <view v-if="orderData.status >= 10" class="event_progress">
  57. <view class="progress_list">
  58. <view class="progress_name">阶段一: 买家已付款</view>
  59. <view class="progress_price">商品定金 <text
  60. class="align_right">¥{{ orderData.pay_price }}</text></view>
  61. <view class="progress_pay">定金实付款<text
  62. class="align_right t-color">¥{{ orderData.pay_price }}</text></view>
  63. </view>
  64. <view class="progress_list">
  65. <view class="progress_name">阶段二:
  66. <text
  67. v-if="orderData.status == 10 && orderData.presellOrder.activeStatus == 0">未开始</text>
  68. <text
  69. v-if="orderData.status == 10 && orderData.presellOrder.activeStatus == 1">等待买家付尾款</text>
  70. <text
  71. v-if="orderData.status == 11 || orderData.presellOrder.activeStatus == 2">交易已关闭</text>
  72. </view>
  73. <view class="progress_price">商品尾款 <text
  74. class="align_right">¥{{ orderData.presellOrder.pay_price }}</text></view>
  75. <view class="progress_pay">尾款需付款<text
  76. class="align_right t-color">¥{{ orderData.presellOrder.pay_price }}</text></view>
  77. </view>
  78. </view>
  79. </view>
  80. <view v-else class='item'>
  81. <view class="acea-row row-between-wrapper">
  82. <view class='pictrue' @click="jumpCon(item)">
  83. <image
  84. :src='(item.cart_info.productAttr && item.cart_info.productAttr.image) || item.cart_info.product.image'>
  85. </image>
  86. </view>
  87. <view class='text'>
  88. <view class='acea-row row-between-wrapper'>
  89. <view class='name line1'><text v-if="item.product_type != 0 && item.product_type != 10"
  90. :class="'font_bg-red type'+item.product_type">{{item.product_type == 1 ? "秒杀" : item.product_type == 2 ? "预售" : item.product_type == 3 ? "助力" : item.product_type == 4 ? "拼团" : ""}}</text>{{item.cart_info.product.store_name}}
  91. </view>
  92. <view class='num'>x {{item.product_num}}</view>
  93. </view>
  94. <view class='attr line1' v-if="item.cart_info.productAttr.sku">
  95. {{item.cart_info.productAttr.sku}}
  96. </view>
  97. <view class='money p-color' v-if="item.cart_info.product_type ==3">
  98. ¥{{item.cart_info.productAssistAttr.assist_price}}</view>
  99. <view class='money p-color' v-else-if="item.cart_info.product_type ==4">
  100. ¥{{item.cart_info.activeSku.active_price}}</view>
  101. <view class='money acea-row row-middle' v-else>
  102. <text>¥{{item.cart_info.productAttr.price}}</text>
  103. <image v-if="item.cart_info.productAttr.show_svip_price" class="svip-img"
  104. src="/static/images/svip.png"></image>
  105. </view>
  106. </view>
  107. </view>
  108. <view class="right-btn-box">
  109. <view class="btn-item err" v-if="item.is_refund ==1">退款中 x
  110. {{item.product_num - item.refund_num}}
  111. </view>
  112. <view class='btn-item err' v-if="item.is_refund >1">已退款 x {{item.product_num - item.refund_num}}
  113. </view>
  114. <view class="btn-item"
  115. v-if="item.is_refund ==0 && evaluate!=9 && orderData.refund_status&&orderData.status!=4 || orderData.status!=4&&item.refund_num > 0"
  116. @click.stop="refund(item)">申请退款</view>
  117. <view class='btn-item' v-if='item.is_reply==0 && evaluate==2 && item.refund_num > 0'
  118. @click.stop="evaluateTap(item.order_product_id,orderId)">去评价</view>
  119. <view class='btn-item on' v-else-if="item.is_reply==1 && evaluate==2">已评价</view>
  120. </view>
  121. </view>
  122. </view>
  123. </view>
  124. </view>
  125. </template>
  126. <script>
  127. // +----------------------------------------------------------------------
  128. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  129. // +----------------------------------------------------------------------
  130. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  131. // +----------------------------------------------------------------------
  132. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  133. // +----------------------------------------------------------------------
  134. // | Author: CRMEB Team <admin@crmeb.com>
  135. // +----------------------------------------------------------------------
  136. import {
  137. openOrderRefundSubscribe
  138. } from '@/utils/SubscribeMessage.js';
  139. import {
  140. goShopDetail
  141. } from '@/libs/order.js'
  142. import {
  143. initiateAssistApi
  144. } from '@/api/activity.js';
  145. import {
  146. mapGetters
  147. } from "vuex";
  148. export default {
  149. props: {
  150. evaluate: {
  151. type: Number,
  152. default: 0,
  153. },
  154. activityType: {
  155. type: Number,
  156. default: 0,
  157. },
  158. cartInfo: {
  159. type: Array,
  160. default: function() {
  161. return [];
  162. }
  163. },
  164. orderId: {
  165. type: String,
  166. default: '',
  167. },
  168. jump: {
  169. type: Boolean,
  170. default: false,
  171. },
  172. orderData: {
  173. type: Object,
  174. default: function() {
  175. return {};
  176. }
  177. }
  178. },
  179. computed: mapGetters(['viewColor']),
  180. data() {
  181. return {
  182. totalNmu: '',
  183. isTimePay: false, //是否到支付时间
  184. };
  185. },
  186. watch: {
  187. cartInfo: function(nVal, oVal) {
  188. let num = 0
  189. nVal.forEach((item, index) => {
  190. num += item.cart_num
  191. })
  192. this.totalNmu = num
  193. }
  194. },
  195. onShow() {
  196. this.isPayBalance()
  197. },
  198. mounted() {},
  199. methods: {
  200. evaluateTap: function(unique, orderId) {
  201. uni.navigateTo({
  202. url: `/pages/users/goods_comment_con/index?uni=${unique}&order_id=${orderId}`
  203. })
  204. },
  205. // 判断是否到支付尾款时间
  206. isPayBalance() {
  207. let that = this;
  208. if (that.orderData.status === 10) {
  209. if (new Date() < new Date(that.orderData.presellOrder.final_start_time)) {
  210. that.isTimePay = false; //未开始
  211. } else if ((new Date() >= new Date(that.orderData.presellOrder.final_start_time)) && (new Date() <=
  212. new Date(that.orderData.presellOrder.final_start_time))) {
  213. that.isTimePay = true; //立即支付
  214. }
  215. }
  216. },
  217. jumpCon: function(item) {
  218. if (item.product_type == 4) item.activity_id = item.cart_info && item.cart_info.activeSku
  219. .product_group_id
  220. if (item.product_type == 3) item.activity_id = item.cart_info && item.cart_info.productAssistAttr
  221. .product_assist_id
  222. goShopDetail(item).then(res => {
  223. initiateAssistApi(item.activity_id).then(res => {
  224. let id = res.data.product_assist_set_id;
  225. uni.hideLoading();
  226. // #ifndef MP
  227. uni.navigateTo({
  228. url: '/pages/activity/assist_detail/index?id=' + id
  229. });
  230. // #endif
  231. // #ifdef MP
  232. openBargainSubscribe().then(res => {
  233. uni.hideLoading();
  234. uni.navigateTo({
  235. url: '/pages/activity/assist_detail/index?id=' + id
  236. });
  237. }).catch((err) => {
  238. uni.hideLoading();
  239. });
  240. // #endif
  241. }).catch((err) => {
  242. uni.showToast({
  243. title: err,
  244. icon: 'none'
  245. })
  246. });
  247. })
  248. },
  249. // 退款
  250. refund(item) {
  251. let that = this;
  252. // #ifdef MP
  253. openOrderRefundSubscribe().then(() => {
  254. uni.hideLoading();
  255. if (that.orderData.is_percentage==1) {
  256. uni.showToast({
  257. title: '请联系客服',
  258. icon:'error'
  259. })
  260. } else {
  261. if (this.evaluate == 0 || this.evaluate == 9 || this.orderData.is_virtual == 1) {
  262. uni.navigateTo({
  263. url: '/pages/users/refund/confirm?order_id=' + this.orderId + '&type=1' +
  264. '&ids=' + item.order_product_id + '&refund_type=1&order_type=' + this
  265. .orderData.order_type
  266. })
  267. } else {
  268. uni.navigateTo({
  269. url: '/pages/users/refund/select?order_id=' + this.orderId +
  270. '&type=1&order_type=' + this.orderData.order_type + '&ids=' + item
  271. .order_product_id
  272. })
  273. }
  274. }
  275. }).catch(() => {
  276. uni.hideLoading();
  277. })
  278. // #endif
  279. // #ifdef H5 || APP-PLUS
  280. if (that.orderData.is_percentage==1) {
  281. uni.showToast({
  282. title: '请联系客服',
  283. icon:'error'
  284. })
  285. } else {
  286. if (this.evaluate == 0 || this.evaluate == 9 || this.orderData.is_virtual == 1) {
  287. uni.navigateTo({
  288. url: '/pages/users/refund/confirm?order_id=' + this.orderId + '&type=1' + '&ids=' +
  289. item
  290. .order_product_id + '&refund_type=1&order_type=' + this.orderData.order_type
  291. })
  292. } else {
  293. uni.navigateTo({
  294. url: '/pages/users/refund/select?order_id=' + this.orderId + '&type=1&order_type=' +
  295. this
  296. .orderData.order_type + '&ids=' + item.order_product_id
  297. })
  298. }
  299. }
  300. // #endif
  301. }
  302. }
  303. }
  304. </script>
  305. <style scoped lang="scss">
  306. .orderGoods {
  307. background-color: #fff;
  308. }
  309. .p-color {
  310. color: var(--view-priceColor);
  311. }
  312. .t-color {
  313. color: var(--view-theme);
  314. }
  315. .svip-img {
  316. width: 65rpx;
  317. height: 28rpx;
  318. margin: 4rpx 0 0 4rpx;
  319. }
  320. .title {
  321. height: 86rpx;
  322. position: relative;
  323. padding: 0 30rpx;
  324. &::after {
  325. content: "";
  326. width: 750rpx;
  327. border-bottom: 2rpx dotted #D8D8D8;
  328. position: absolute;
  329. bottom: 0;
  330. left: 0;
  331. }
  332. .item-status {
  333. color: #999999;
  334. font-size: 30rpx;
  335. &.status0 {
  336. color: #2291F8;
  337. }
  338. }
  339. .item-date {
  340. color: #666666;
  341. font-size: 28rpx;
  342. }
  343. }
  344. .right-btn-box {
  345. display: flex;
  346. align-items: center;
  347. justify-content: flex-end;
  348. &.event_box {
  349. position: static;
  350. }
  351. .btn-item {
  352. display: flex;
  353. align-items: center;
  354. justify-content: center;
  355. width: 140rpx;
  356. height: 46rpx;
  357. margin-left: 10rpx;
  358. border: 1px solid rgba(187, 187, 187, 1);
  359. border-radius: 23rpx;
  360. font-size: 24rpx;
  361. color: #282828;
  362. &.on {
  363. background: rgba(220, 220, 220, 1);
  364. border-color: rgba(220, 220, 220, 1);
  365. }
  366. &.err {
  367. background: rgba(247, 247, 247, 1);
  368. border-color: rgba(247, 247, 247, 1);
  369. color: #AAAAAA;
  370. }
  371. }
  372. }
  373. .event_bg {
  374. background: #FF7F00;
  375. }
  376. .event_color {
  377. color: #FF7F00;
  378. }
  379. .presell_item {
  380. height: auto;
  381. padding-bottom: 15rpx;
  382. }
  383. .event_progress {
  384. margin-top: 20rpx;
  385. background: #fff;
  386. .progress_name {
  387. padding-left: 30rpx;
  388. height: 60rpx;
  389. line-height: 60rpx;
  390. font-size: 24rpx;
  391. font-weight: bold;
  392. position: relative;
  393. color: var(--view-theme);
  394. &::before {
  395. content: "";
  396. display: inline-block;
  397. width: 5rpx;
  398. height: 34rpx;
  399. background: var(--view-theme);
  400. position: absolute;
  401. top: 15rpx;
  402. left: 0;
  403. }
  404. }
  405. .align_right {
  406. float: right;
  407. font-weight: bold;
  408. }
  409. .progress_price {
  410. padding: 20rpx 30rpx;
  411. color: #999999;
  412. font-size: 22rpx;
  413. }
  414. .progress_pay {
  415. padding: 25rpx 30rpx;
  416. background: var(--view-minorColor);
  417. font-size: 26rpx;
  418. color: #282828;
  419. }
  420. }
  421. .event_name {
  422. display: inline-block;
  423. margin-right: 9rpx;
  424. color: #fff;
  425. font-size: 20rpx;
  426. padding: 0 8rpx;
  427. line-height: 30rpx;
  428. text-align: center;
  429. border-radius: 6rpx;
  430. }
  431. .event_ship {
  432. font-size: 20rpx;
  433. margin-top: 10rpx;
  434. }
  435. .goodWrapper.item1 {
  436. &::after {
  437. content: "";
  438. display: block;
  439. width: 750rpx;
  440. height: 14rpx;
  441. background: #F0F0F0;
  442. }
  443. }
  444. </style>