diff --git a/pages/mine_package/mine_order/after-sales/refund-popu.vue b/pages/mine_package/mine_order/after-sales/refund-popu.vue index 789580f..e7c27ac 100644 --- a/pages/mine_package/mine_order/after-sales/refund-popu.vue +++ b/pages/mine_package/mine_order/after-sales/refund-popu.vue @@ -42,12 +42,13 @@ - 邮寄地址 + 邮寄地址 {{ product.address || "--" }} 卖家信息 - {{ `${product.name} ${product.phone}` }} + {{ (product.name || product.phone) ? `${product.name || ''} ${product.phone || ''}`.trim() : "--" }} + 请选择快递名称 @@ -250,7 +251,7 @@ export default { // 售后中--卖家已收货,退款成功 if (this.product.status == 7) { return 5; - } + } // 退款 if (this.product.status == 8) { return 6; @@ -277,7 +278,7 @@ export default { /* 根据订单状态显示不label */ topLabel() { if (this.status == 1) { - return "您已成功发起退货/退款申请,请耐心等待审"; + return "您已成功发起退货/退款申请,请耐心等待审核"; } else if (this.status == 2) { return "请按照以下地址寄回商品"; } else if (this.status == 3) { @@ -297,7 +298,7 @@ export default { } else if (this.status == 2) { return "退款申请通过"; } else if (this.status == 3) { - return "您已成功发起退货/退款申请,请耐心等待处"; + return "您已成功发起退货/退款申请,请耐心等待处理"; } else if (this.status == 4) { return "退款申请失败"; } else if (this.status == 5) { @@ -391,7 +392,8 @@ export default { display: flex; justify-content: space-between; height: 96rpx; - line-height: 96rpx; + align-items: center; + // line-height: 96rpx; font-size: 28rpx; border-bottom: 1px solid #eaeaea; diff --git a/pages/other_package/invite_friends/invite_friends.vue b/pages/other_package/invite_friends/invite_friends.vue index ed4d7e1..e66aa10 100644 --- a/pages/other_package/invite_friends/invite_friends.vue +++ b/pages/other_package/invite_friends/invite_friends.vue @@ -1,136 +1,165 @@ - - + }, - + } + \ No newline at end of file