| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- <template>
- <view class="orderGoods">
- <view class='goodWrapper'>
- <view v-for="(item,index) in cartInfo" :key="index">
- <view v-if="activityType === 2">
- <view class='item acea-row row-between-wrapper presell_item'>
- <view class='pictrue' @click="jumpCon(item)">
- <image :src='(item.cart_info.productAttr && item.cart_info.productAttr.image) || item.cart_info.product.image' ></image>
- </view>
- <view class='text'>
- <view class='acea-row row-between-wrapper'>
- <view class='name line1' style="width: 360rpx;"><text class="event_name event_bg">预售</text>{{item.cart_info.product.store_name}}</view>
- <view class='num'><text class="font-color">¥{{item.cart_info.productPresellAttr.presell_price}}</text><br/>x {{item.product_num}}</view>
- </view>
- <view class='attr line1' v-if="item.cart_info.productAttr.sku" style="margin-top: 0;">{{item.cart_info.productAttr.sku}}</view>
- <view v-if="evaluate === 0 || evaluate === 10 || evaluate === 11" class="event_ship event_color">发货时间:
- <!--全款预售-->
- <text v-if="item.cart_info.productPresell.presell_type === 1">{{ item.cart_info.productPresell.delivery_type === 1 ? '支付成功后' : '预售结束后' }}{{ item.cart_info.productPresell.delivery_day }}天内</text>
- <!--定金预售-->
- <text v-if="item.cart_info.productPresell.presell_type === 2">{{ item.cart_info.productPresell.delivery_type === 1 ? '支付尾款后' : '预售结束后' }}{{ item.cart_info.productPresell.delivery_day }}天内</text>
- </view>
- <view class="right-btn-box event_box">
- <view class="btn-item" v-if="item.is_refund ==0 && (evaluate != 10 && evaluate != 11)" @click.stop="refund(item)">申请退款</view>
- <view class="btn-item err" v-if="item.is_refund ==1">退款中</view>
- <view class='btn-item err' v-if="item.is_refund >1">已退款</view>
- <view class='btn-item' v-if='item.is_reply==0 && evaluate==2' @click.stop="evaluateTap(item.order_product_id,orderId)">去评价</view>
- <view class='btn-item on' v-else-if="item.is_reply==1 && evaluate==2">已评价</view>
-
- </view>
- </view>
-
- </view>
- <view v-if="orderData.status >= 10" class="event_progress">
- <view class="progress_list">
- <view class="progress_name font-color">阶段一: 买家已付款</view>
- <view class="progress_price">商品定金 <text class="align_right">¥{{ orderData.pay_price }}</text></view>
- <view class="progress_pay">定金实付款<text class="align_right font-color">¥{{ orderData.pay_price }}</text></view>
- </view>
- <view class="progress_list">
- <view class="progress_name font-color">阶段二:
- <text v-if="orderData.status == 10 && orderData.presellOrder.activeStatus == 0">未开始</text>
- <text v-if="orderData.status == 10 && orderData.presellOrder.activeStatus == 1">等待买家付尾款</text>
- <text v-if="orderData.status == 11 || orderData.presellOrder.activeStatus == 2">交易已关闭</text>
- </view>
- <view class="progress_price">商品尾款 <text class="align_right">¥{{ orderData.presellOrder.pay_price }}</text></view>
- <view class="progress_pay">尾款需付款<text class="align_right font-color">¥{{ orderData.presellOrder.pay_price }}</text></view>
- </view>
- </view>
- </view>
-
- <view v-else class='item acea-row row-between-wrapper'>
- <view class='pictrue' @click="jumpCon(item)">
- <image :src='(item.cart_info.productAttr && item.cart_info.productAttr.image) || item.cart_info.product.image' ></image>
- </view>
- <view class='text'>
- <view class='acea-row row-between-wrapper'>
- <view class='name line1'>{{item.cart_info.product.store_name}}</view>
- <view class='num'>x {{item.product_num}}</view>
- </view>
- <view class='attr line1' v-if="item.cart_info.productAttr.sku">{{item.cart_info.productAttr.sku}}</view>
- <view class='money font-color' v-if="item.cart_info.product_type ==3">¥{{item.cart_info.productAssistAttr.assist_price}}</view>
- <view class='money font-color' v-else-if="item.cart_info.product_type ==4">¥{{item.cart_info.activeSku.active_price}}</view>
- <view class='money font-color' v-else>¥{{item.cart_info.productAttr.price}}</view>
- <view class="right-btn-box">
- <view class="btn-item" v-if="item.is_refund ==0 && evaluate!=9" @click.stop="refund(item)">申请退款</view>
- <view class="btn-item err" v-if="item.is_refund ==1">退款中</view>
- <view class='btn-item err' v-if="item.is_refund >1">已退款</view>
- <view class='btn-item' v-if='item.is_reply==0 && evaluate==2' @click.stop="evaluateTap(item.order_product_id,orderId)">去评价</view>
- <view class='btn-item on' v-else-if="item.is_reply==1 && evaluate==2">已评价</view>
-
- </view>
- </view>
- </view>
-
- </view>
- </view>
- </view>
- </template>
- <script>
- import { openOrderRefundSubscribe } from '@/utils/SubscribeMessage.js';
- import { goShopDetail } from '@/libs/order.js'
- import { initiateAssistApi } from '@/api/activity.js';
-
- export default {
- props: {
- evaluate: {
- type: Number,
- default: 0,
- },
- activityType: {
- type: Number,
- default: 0,
- },
- cartInfo: {
- type: Array,
- default: function() {
- return [];
- }
- },
- orderId: {
- type: String,
- default: '',
- },
- jump: {
- type: Boolean,
- default: false,
- },
- orderData: {
- type: Object,
- default: function() {
- return {};
- }
- }
- },
- data() {
- return {
- totalNmu:'',
- isTimePay: false, //是否到支付时间
- };
- },
- watch:{
- cartInfo:function(nVal,oVal){
- let num = 0
- nVal.forEach((item,index)=>{
- num += item.cart_num
- })
- this.totalNmu = num
- }
- },
- onShow() {
- this.isPayBalance()
- },
- mounted() {
- console.log(this.cartInfo,'cartInfo')
-
- },
- methods: {
- evaluateTap:function(unique,orderId){
- uni.navigateTo({
- url:`/pages/users/goods_comment_con/index?uni=${unique}&order_id=${orderId}`
- })
- },
- // 判断是否到支付尾款时间
- isPayBalance(){
- let that = this;
- if(that.orderData.status === 10){
- if(new Date() < new Date(that.orderData.presellOrder.final_start_time)){
- that.isTimePay = false; //未开始
- }else if((new Date() >= new Date(that.orderData.presellOrder.final_start_time)) && (new Date() <= new Date(that.orderData.presellOrder.final_start_time)) ){
- that.isTimePay = true; //立即支付
- }
- }
- },
- jumpCon:function(item){
- // if(this.jump){
- // if(this.activityType == 2){
- // uni.navigateTo({
- // url: `/pages/activity/presell_details/index?id=${id}`
- // })
- // }else{
- // uni.navigateTo({
- // url: `/pages/goods_details/index?id=${id}`
- // })
- // }
- // }
- if(item.product_type == 4)item.activity_id = item.cart_info && item.cart_info.activeSku.product_group_id
- goShopDetail(item).then(res => {
- initiateAssistApi(item.activity_id).then(res => {
- let id = res.data.product_assist_set_id;
- uni.hideLoading();
- // #ifndef MP
- uni.navigateTo({
- url: '/pages/activity/assist_detail/index?id=' + id
- });
- // #endif
- // #ifdef MP
- openBargainSubscribe().then(res => {
- uni.hideLoading();
- uni.navigateTo({
- url: '/pages/activity/assist_detail/index?id=' + id
- });
- }).catch((err) => {
- uni.hideLoading();
- });
- // #endif
- }).catch((err) => {
- uni.showToast({
- title: err,
- icon: 'none'
- })
- });
- })
- },
- // 退款
- refund(item){
- // #ifdef MP
- openOrderRefundSubscribe().then(() => {
- uni.hideLoading();
- if(this.evaluate == 0 || this.evaluate == 9){
-
- uni.navigateTo({
- url:'/pages/users/refund/confirm?order_id='+this.orderId+'&type=1'+'&ids='+item.order_product_id+'&refund_type=1'
- })
- }else{
- uni.navigateTo({
- url:'/pages/users/refund/select?order_id='+this.orderId+'&type=1'+'&ids='+item.order_product_id
- })
- }
- }).catch(() => {
- uni.hideLoading();
- })
- // #endif
- // #ifdef H5
- if(this.evaluate == 0 || this.evaluate == 9){
-
- uni.navigateTo({
- url:'/pages/users/refund/confirm?order_id='+this.orderId+'&type=1'+'&ids='+item.order_product_id+'&refund_type=1'
- })
- }else{
- uni.navigateTo({
- url:'/pages/users/refund/select?order_id='+this.orderId+'&type=1'+'&ids='+item.order_product_id
- })
- }
- // #endif
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .orderGoods {
- background-color: #fff;
- }
- .right-btn-box{
- position: absolute;
- right: 0;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- &.event_box{
- position: static;
- }
- .btn-item{
- display: flex;
- align-items: center;
- justify-content: center;
- width:140rpx;
- height:46rpx;
- margin-left: 20rpx;
- border:1px solid rgba(187,187,187,1);
- border-radius:23rpx;
- font-size: 24rpx;
- color: #282828;
- &.on{
- background:rgba(220,220,220,1);
- border-color: rgba(220,220,220,1);
- }
- &.err{
- background:rgba(247,247,247,1);
- border-color: rgba(247,247,247,1);
- color: #AAAAAA;
- }
- }
- }
- .event_bg{
- background: #FF7F00;
- }
- .event_color{
- color: #FF7F00;
- }
- .presell_item{
- height: auto;
- padding-bottom: 15rpx;
- }
- .event_progress{
- margin-top: 20rpx;
- background: #fff;
- .progress_name {
- padding-left: 30rpx;
- height: 60rpx;
- line-height: 60rpx;
- font-size: 24rpx;
- font-weight: bold;
- position: relative;
- &::before{
- content: "";
- display: inline-block;
- width: 5rpx;
- height: 34rpx;
- background: #E93323;
- position: absolute;
- top: 15rpx;
- left: 0;
- }
- }
- .align_right{
- float: right;
- font-weight: bold;
- }
- .progress_price{
- padding: 20rpx 30rpx;
- color: #999999;
- font-size: 22rpx;
-
- }
- .progress_pay{
- padding: 25rpx 30rpx;
- background: #FFF8F7;
- font-size: 26rpx;
- color: #282828;
-
- }
- }
- .event_name{
- display: inline-block;
- margin-right: 9rpx;
- color: #fff;
- font-size: 20rpx;
- padding: 0 8rpx;
- line-height: 30rpx;
- text-align: center;
- border-radius: 6rpx;
- }
- .event_ship{
- font-size: 20rpx;
- margin-top: 10rpx;
- }
- </style>
|