123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- <template>
- <!-- 订单商品 -->
- <view class="orderGoods" :class="product_type?'on':''">
- <view class='total' v-if="!split && totalNmu>0">共{{totalNmu}}件商品</view>
- <view class='total' v-if="split">
- <text>订单包裹{{index + 1}}</text>
- <view class="rig-btn" v-if="status_type === 2">
- <view class="logistics sure" @click="confirmOrder(orderId)">确认收货</view>
- <view v-if="delivery_type === 'express'" class="logistics" @click="logistics(orderId)">查看物流</view>
- </view>
- <view class="rig-btn" v-else-if="status_type === -1">
- <view class="refund">申请退款中</view>
- </view>
- <view class="rig-btn" v-else-if="status_type === -2">
- <view class="refund">已退款</view>
- </view>
- <view class="rig-btn" v-else-if="status_type === 4">
- <view class="done">已完成</view>
- </view>
- </view>
- <view class='goodWrapper'>
- <view class='list' :class="{op:!item.is_valid}"
- v-for="(item,index) in cartInfo" :key="index" @click="jumpCon(item.product_id)">
- <view class="item acea-row row-between-wrapper">
- <view class='pictrue'>
- <image :src='item.productInfo.attrInfo.image' v-if="item.productInfo.attrInfo"></image>
- <image :src='item.productInfo.image' v-else></image>
- </view>
- <view class='text'>
- <view class='acea-row row-between-wrapper'>
- <view class='name line1'>{{item.productInfo.store_name}}</view>
- <view class='num'>x {{item.cart_num}}</view>
- </view>
- <view class='attr line1' v-if="item.productInfo.attrInfo">{{item.productInfo.attrInfo.suk}}</view>
- <view class='money font-color pic'>
- <text>
- ¥{{item.productInfo.attrInfo?item.productInfo.attrInfo.price:item.productInfo.price}}
- </text>
- <text class="valid" v-if="!item.is_valid">{{shippingType==0?'不送达':'不支持自提'}}</text>
- </view>
- <view class="posBnt acea-row row-middle">
- <view class="evaluate writeOff" v-if="(statusType==5 || statusType==1 || statusType==2 || statusType==3) && (deliveryType==2 || sendType=='send')">
- <text class="on" v-if="item.is_writeoff">已核销</text>
- <text class="on" v-if="!item.is_writeoff && item.surplus_num<item.cart_num">已核销{{parseInt(item.cart_num)-parseInt(item.surplus_num)}}件</text>
- <text v-if="!item.is_writeoff && item.surplus_num==item.cart_num">未核销</text>
- </view>
- <!-- #ifdef H5 || APP-PLUS -->
- <slot name="bottom" :item="item"></slot>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <slot name="bottom{{index}}"></slot>
- <!-- #endif -->
- <text class="refund" v-if="item.refund_num && statusType !=-2">{{item.refund_num}}件退款中</text>
- </view>
- </view>
- </view>
- <view class="button acea-row row-right">
- <view class="bnt acea-row row-center-wrapper" v-if="refund_status === 0 && item.refund_num !=item.cart_num && paid && item.is_support_refund" @click.stop="openSubcribe(item,productType)">申请退款</view>
- <view class='bnt acea-row row-center-wrapper' v-if='evaluate==3 && item.is_reply==0 && pid != -1'
- @click.stop="evaluateTap(item.unique,orderId)">评价</view>
- <view class='bnt acea-row row-center-wrapper' v-else-if="evaluate==3 && item.is_reply==1">已评价</view>
- </view>
- <!-- #ifdef H5 || APP-PLUS -->
- <slot name="footer" :item="item"></slot>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <slot name="footer{{index}}"></slot>
- <!-- #endif -->
- </view>
- <view class="giveGoods">
- <view class="item acea-row row-between-wrapper" v-for="(item,index) in giveCartInfo" :key="item.id">
- <view class="picTxt acea-row row-middle">
- <view class="pictrue">
- <image :src="item.productInfo.attrInfo.image" v-if="item.productInfo.attrInfo"></image>
- <image :src="item.productInfo.image" v-else></image>
- </view>
- <view class="texts">
- <view class="name line1">[赠品]{{item.productInfo.store_name}}</view>
- <view class="limit line1" v-if="item.productInfo.attrInfo">{{item.productInfo.attrInfo.suk}}</view>
- </view>
- </view>
- <view class="num">x{{item.cart_num}}</view>
- </view>
- <view class="item acea-row row-between-wrapper" v-for="(item,index) in giveData.give_coupon" :key="item.id" v-if="giveData.give_coupon.length">
- <view class="picTxt acea-row row-middle">
- <view class="pictrue acea-row row-center-wrapper">
- <text class="iconfont icon-pc-youhuiquan"></text>
- </view>
- <view class="texts">
- <view class="line1">[赠品]{{item.coupon_title}}</view>
- </view>
- </view>
- </view>
- <view class="item acea-row row-between-wrapper" v-if="giveData.give_integral>0">
- <view class="picTxt acea-row row-middle">
- <view class="pictrue acea-row row-center-wrapper">
- <text class="iconfont icon-pc-jifen"></text>
- </view>
- <view class="texts">
- <view class="line1">[赠品]{{giveData.give_integral}}积分</view>
- </view>
- </view>
- </view>
- </view>
- <view class="more-operation" v-if="split && refund_status === 0" @click="changeOperation">
- {{operationModel?'关闭':'更多操作'}}
- </view>
- <transition name="fade" mode="out-in" v-if="split && operationModel && refund_status === 0">
- <!-- #ifdef MP -->
- <view>
- <view class="more-operation b-top" @click="openSubcribe">
- 申请退款
- </view>
- </view>
- <!-- #endif -->
- <!-- #ifndef MP -->
- <navigator hover-class="none" :url="'/pages/goods/goods_return/index?orderId='+ orderId"
- class='more-operation b-top'>申请退款
- </navigator>
- <!-- #endif -->
- </transition>
- </view>
- </view>
- </template>
- <script>
- import {
- openOrderRefundSubscribe
- } from '@/utils/SubscribeMessage.js';
- export default {
- props: {
- productType:{
- type: Number,
- default: 0,
- },
- product_type:{
- type: Number,
- default: 0,
- },
- evaluate: {
- type: Number,
- default: 0,
- },
- paid: {
- type: Number,
- default: 0
- },
- // 订单状态
- statusType: {
- type: Number,
- default: 0,
- },
- // 配送方式
- deliveryType: {
- type: Number,
- default: 0,
- },
- // 送货方式
- sendType: {
- type: String,
- default: '',
- },
- cartInfo: {
- type: Array,
- default: function() {
- return [];
- }
- },
- giveData:{
- type:Object,
- default: function() {
- return [];
- }
- },
- giveCartInfo:{
- type: Array,
- default: function() {
- return [];
- }
- },
- orderId: {
- type: String,
- default: '',
- },
- delivery_type: {
- type: String,
- default: '',
- },
- shippingType: {
- type: Number,
- default: 0,
- },
- id:{
- type: Number,
- default: 0,
- },
- oid:{
- type: Number,
- default: 0,
- },
- jump: {
- type: Boolean,
- default: false,
- },
- split: {
- type: Boolean,
- default: false,
- },
- jumpDetail: {
- type: Boolean,
- default: false,
- },
- index: {
- type: Number,
- default: 0,
- },
- pid: {
- type: Number,
- default: 0,
- },
- refund_status: {
- type: Number,
- default: -1,
- },
- status_type: {
- type: Number,
- default: 0,
- }
- },
- data() {
- return {
- totalNmu: '',
- operationModel: false,
- status: ""
- };
- },
- watch: {
- cartInfo: function(nVal, oVal) {
- let num = 0
- nVal.forEach((item, index) => {
- num += item.cart_num
- })
- this.totalNmu = num
- }
- },
- methods: {
- evaluateTap: function(unique, orderId) {
- uni.navigateTo({
- url: "/pages/goods/goods_comment_con/index?unique=" + unique + "&uni=" + orderId
- })
- },
- jumpCon: function(id) {
- if (this.jump) {
- uni.navigateTo({
- url: `/pages/goods_details/index?id=${id}`
- })
- } else if (this.jumpDetail) {
- uni.navigateTo({
- url: `/pages/goods/order_details/index?order_id=${this.orderId}`
- })
- }
- },
- logistics(order_id) {
- uni.navigateTo({
- url: '/pages/goods/goods_logistics/index?orderId=' + order_id
- })
- },
- confirmOrder(orderId) {
- this.$emit('confirmOrder', orderId)
- },
- changeOperation() {
- this.operationModel = !this.operationModel
- },
- openSubcribe: function(item,productType) {
- let cartIds = [
- {
- cart_id:item.id,
- cart_num:parseInt(item.cart_num) - parseInt(item.refund_num)
- }
- ]
- cartIds = JSON.stringify(cartIds);
- let page = `/pages/goods/goods_return/index?orderId=`+this.orderId+ '&id=' + this.oid+ '&cartIds='+ cartIds+'&productType='+this.productType;
- // #ifdef MP
- uni.showLoading({
- title: '正在加载',
- })
- openOrderRefundSubscribe().then(res => {
- uni.hideLoading();
- uni.navigateTo({
- url: page,
- });
- }).catch(() => {
- uni.hideLoading();
- });
- // #endif
- // #ifndef MP
- uni.navigateTo({
- url: page
- })
- // #endif
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .giveGoods{
- .item{
- padding: 14rpx 30rpx 14rpx 0;
- margin-left: 30rpx;
- border-bottom: 1px solid #eee;
- .picTxt{
- .pictrue{
- width: 76rpx;
- height: 76rpx;
- border-radius: 6rpx;
- background-color: #F5F5F5;
- color: var(--view-theme);
- .iconfont{
- font-size: 34rpx;
- }
- image{
- width: 100%;
- height: 100%;
- border-radius: 6rpx;
- }
- margin-right: 16rpx;
- }
- .texts{
- width: 360rpx;
- color: #999999;
- font-size: 20rpx;
- .name{
- color: #333;
- }
- .limit{
- font-size: 20rpx;
- margin-top: 4rpx;
- }
- }
- }
- .num{
- color: #999999;
- font-size: 20rpx;
- }
- }
- }
- .goodWrapper .list .button{
- margin-bottom: 16rpx;
- .bnt{
- font-size: 24rpx;
- color: #666;
- width: 140rpx;
- height: 48rpx;
- border-radius: 23rpx;
- border: 1rpx solid #CCCCCC;
- margin-left: 20rpx;
- }
- }
- .goodWrapper .item .text .posBnt{
- position: absolute;
- right: 0;
- bottom: -5rpx
- }
- .goodWrapper .item .text .refund{
- font-size: 24rpx;
- color: #E93323;
- margin-left: 20rpx;
- }
- .goodWrapper .item .text .writeOff{
- border: 0;
- width: unset;
- font-size: 20rpx;
- color: #1890FF;
- }
- .goodWrapper .item .text .writeOff .on{
- color: #999;
- }
- .fontcolor {
- color: var(--view-theme);
- }
- .orderGoods {
- background-color: #fff;
- margin-top: 12rpx;
- &.on{
- margin-top: 0;
- }
- }
- .orderGoods .total {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- // height: 86rpx;
- padding: 0 30rpx;
- border-bottom: 2rpx solid #f0f0f0;
- font-size: 30rpx;
- color: #282828;
- line-height: 86rpx;
- box-sizing: border-box;
- .rig-btn {
- display: flex;
- align-items: center;
- .refund {
- font-size: 26rpx;
- color: var(--view-theme);
- }
- .done {
- font-size: 26rpx;
- color: #F19D2F;
- }
- }
- .logistics {
- // height: 46rpx;
- line-height: 30rpx;
- color: #999999;
- font-size: 20rpx;
- border: 1px solid;
- border-radius: 30rpx;
- padding: 6rpx 12rpx;
- margin-left: 10rpx;
- }
- .sure {
- color: var(--view-theme);
- border: 1px solid var(--view-theme);
- }
- }
- .more-operation {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 10rpx 0;
- color: #bbb;
- }
- .b-top {
- margin-left: 30rpx;
- margin-right: 30rpx;
- border-top: 1px solid #f0f0f0
- }
- .fade-enter-active,
- .fade-leave-active {
- transition: all 0.1s;
- }
- .fade-enter,
- .fade-leave-to
- /* .fade-leave-active below version 2.1.8 */
- {
- opacity: 0;
- transform: translateY(-10px);
- }
- .op {
- opacity: 0.5;
- }
- .pic {
- display: flex;
- justify-content: space-between;
- }
- .valid {
- font-size: 24rpx;
- }
- </style>
|