From 84904b40585c0bbf85d332b4c7be9c9ff6a7170b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=AE=BF=E6=98=95?= Date: Fri, 20 Nov 2020 18:44:16 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E8=AF=A6=E6=83=85=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/user/order/order_detail.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/user/order/order_detail.vue b/src/pages/user/order/order_detail.vue index 5a66ad1..df6ed43 100644 --- a/src/pages/user/order/order_detail.vue +++ b/src/pages/user/order/order_detail.vue @@ -270,12 +270,12 @@
- {{ orderDetail.spec_type == 0 ? "计次收费:" : "时长收费:" }} + {{ orderDetail.spcs_type == 0 ? "计次收费:" : "时长收费:" }} {{ orderDetail.single_money }}金币/ {{ - orderDetail.spec_type == 1 + orderDetail.spcs_type == 1 ? orderDetail.spec_count + "次" : "月" }} @@ -747,7 +747,7 @@ export default { if (this.orderDetail.order_type == 1) { query = { service_id: parseFloat(this.orderDetail.service_id), - spec_id: this.orderDetail.svc_spec_id, + spcs_id: this.orderDetail.spcs_id, duration: this.orderDetail.duration, duration_unit: this.orderDetail.duration_unit, }; @@ -759,7 +759,7 @@ export default { } else if (this.orderDetail.order_type == 2) { query = { app_id: parseFloat(this.orderDetail.app_id), - spec_id: this.orderDetail.spec_app++, + spcs_id: this.orderDetail.spcs_id, duration: this.orderDetail.duration, duration_unit: this.orderDetail.duration_unit, }; -- 2.26.0