diff --git a/src/pages/user/order/order_detail.vue b/src/pages/user/order/order_detail.vue
index 5a66ad1594087b255b4c3ade7d4dde304f234bec..df6ed438aba76f524eb29c7db0fb88296e5e25ef 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,
};