Commit 84904b40 authored by 刘殿昕's avatar 刘殿昕

订单详情参数

parent 7ab376ab
...@@ -270,12 +270,12 @@ ...@@ -270,12 +270,12 @@
<div v-if="orderDetail.order_type == 1"> <div v-if="orderDetail.order_type == 1">
<div> <div>
<span class="detail_service_specification_gg"> <span class="detail_service_specification_gg">
{{ orderDetail.spec_type == 0 ? "计次收费:" : "时长收费:" }} {{ orderDetail.spcs_type == 0 ? "计次收费:" : "时长收费:" }}
</span> </span>
<span class="detail_service_specification_val"> <span class="detail_service_specification_val">
{{ orderDetail.single_money }}金币/ {{ orderDetail.single_money }}金币/
{{ {{
orderDetail.spec_type == 1 orderDetail.spcs_type == 1
? orderDetail.spec_count + "" ? orderDetail.spec_count + ""
: "" : ""
}} }}
...@@ -747,7 +747,7 @@ export default { ...@@ -747,7 +747,7 @@ export default {
if (this.orderDetail.order_type == 1) { if (this.orderDetail.order_type == 1) {
query = { query = {
service_id: parseFloat(this.orderDetail.service_id), 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: this.orderDetail.duration,
duration_unit: this.orderDetail.duration_unit, duration_unit: this.orderDetail.duration_unit,
}; };
...@@ -759,7 +759,7 @@ export default { ...@@ -759,7 +759,7 @@ export default {
} else if (this.orderDetail.order_type == 2) { } else if (this.orderDetail.order_type == 2) {
query = { query = {
app_id: parseFloat(this.orderDetail.app_id), app_id: parseFloat(this.orderDetail.app_id),
spec_id: this.orderDetail.spec_app++, spcs_id: this.orderDetail.spcs_id,
duration: this.orderDetail.duration, duration: this.orderDetail.duration,
duration_unit: this.orderDetail.duration_unit, duration_unit: this.orderDetail.duration_unit,
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment