This commit is contained in:
parent
1b50cae07b
commit
699974b918
|
@ -48,7 +48,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class="money">
|
||||
<view class="x-money">¥{{ item.cart_info.productAttr.price }}</view>
|
||||
<view class="x-money">¥{{ item.cart_info.productAttr.procure_price }}</view>
|
||||
<view class="num">x{{ item.product_num }}
|
||||
<text class="font-color refund_num" v-if="item.product_num-item.refund_num>0">(-{{item.product_num-item.refund_num}})</text>
|
||||
</view>
|
||||
|
|
|
@ -125,7 +125,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class="money">
|
||||
<view class="x-money">¥{{ val.cart_info.productAttr.price }}</view>
|
||||
<view class="x-money">¥{{ val.cart_info.productAttr.procure_price }}</view>
|
||||
<view class="num">x{{ val.product_num }}</view>
|
||||
<!-- <view class="refund-num" v-if="val.product_num-val.refund_num>0">{{val.product_num-val.refund_num}}件{{val.is_refund==1?'退款中' : val.is_refund==2 ? '已退款' : val.is_refund==3?'全部退款':''}}</view> -->
|
||||
</view>
|
||||
|
@ -264,6 +264,7 @@
|
|||
current: "",
|
||||
change: false,
|
||||
refundMark: false,
|
||||
showBar: false, //是否显示二维码
|
||||
types: 1,
|
||||
where: {
|
||||
page: 1,
|
||||
|
|
|
@ -135,7 +135,7 @@
|
|||
<view>x{{goods.product_num}}</view>
|
||||
</view>
|
||||
<view v-else class='money'>
|
||||
<view>¥{{goods.cart_info.productAttr.price}}</view>
|
||||
<view>¥{{goods.cart_info.productAttr.procure_price}}</view>
|
||||
<view>x{{goods.product_num}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
@ -242,7 +242,7 @@
|
|||
<view>x{{goods.product_num}}</view>
|
||||
</view>
|
||||
<view class='money' v-else>
|
||||
<view>¥{{goods.cart_info.productAttr.price}}</view>
|
||||
<view>¥{{goods.cart_info.productAttr.procure_price}}</view>
|
||||
<view>x{{goods.product_num}}</view>
|
||||
</view>
|
||||
<view v-if="item.pay_type==8" style="text-align: right;width: 100%;font-size: 14px;">先货后款 实付:¥0.00</view>
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
item.content = '先发货 后付款';
|
||||
}
|
||||
})
|
||||
res.data = res.data.filter(item=>item.name!='线上铺货'&&item.name!='实体铺货')
|
||||
this.list = res.data;
|
||||
})
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue