From 5b58d1de5ea69bba61721fcd83e03b5ed0082fff Mon Sep 17 00:00:00 2001 From: Chopper711 Date: Wed, 31 May 2023 15:04:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=B9=8B=E5=89=8D=E7=9A=84=E9=83=A8?= =?UTF-8?q?=E5=88=86=E5=94=AE=E5=90=8E=E9=80=BB=E8=BE=91=E8=A1=A5=E8=B6=B3?= =?UTF-8?q?=EF=BC=8C=E4=B8=8D=E8=BF=87=E4=BB=A3=E7=A0=81=E5=88=A4=E5=AE=9A?= =?UTF-8?q?=E5=AD=98=E5=9C=A8=E9=97=AE=E9=A2=98=EF=BC=8C=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E6=9C=AA=E6=9D=A5=E8=BF=9B=E8=A1=8C=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buyer/src/pages/home/orderCenter/MyOrder.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buyer/src/pages/home/orderCenter/MyOrder.vue b/buyer/src/pages/home/orderCenter/MyOrder.vue index c390427a..a0293c1e 100644 --- a/buyer/src/pages/home/orderCenter/MyOrder.vue +++ b/buyer/src/pages/home/orderCenter/MyOrder.vue @@ -70,7 +70,8 @@ - + @@ -206,7 +207,7 @@ export default { applyAfterSale (goodsItem) { // 申请售后 let arr = [] goodsItem.forEach(e => { - if (e.afterSaleStatus === 'NOT_APPLIED') { + if (e.afterSaleStatus === 'NOT_APPLIED'|| e.afterSaleStatus === 'PART_AFTER_SALE') { arr.push(e) } });