parent
0e0ecda0d9
commit
24fcdd006b
|
|
@ -278,6 +278,11 @@
|
|||
this.completed_step = this.step_numbers[response.data.jump_to_section] + 1;
|
||||
this.current_step = this.step_numbers[response.data.jump_to_section];
|
||||
|
||||
if (response.data.jump_to_section == "payment") {
|
||||
this.showPaymentSection = true;
|
||||
paymentMethods = response.data.paymentMethods;
|
||||
}
|
||||
|
||||
shippingMethods = response.data.shippingMethods;
|
||||
|
||||
this.getOrderSummary();
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<accordian :title="'{{ __('shop::app.checkout.onepage.billing-address') }}'" :active="true">
|
||||
<div class="form-header mb-30" slot="header">
|
||||
<h3 class="fw6 display-inbl">
|
||||
1. {{ __('shop::app.checkout.onepage.billing-address') }}
|
||||
{{ __('shop::app.checkout.onepage.billing-address') }}
|
||||
</h3>
|
||||
|
||||
<a
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
<accordian :title="'{{ __('shop::app.checkout.onepage.billing-address') }}'" :active="true">
|
||||
<div class="form-header" slot="header">
|
||||
<h3 class="fw6 display-inbl">
|
||||
1. {{ __('shop::app.checkout.onepage.billing-address') }}
|
||||
{{ __('shop::app.checkout.onepage.billing-address') }}
|
||||
</h3>
|
||||
|
||||
@auth('customer')
|
||||
|
|
|
|||
|
|
@ -366,6 +366,7 @@
|
|||
v-validate="'required'"
|
||||
class="control styled-select"
|
||||
v-model="address.billing.country"
|
||||
@change="validateForm('address-form')"
|
||||
data-vv-as=""{{ __('shop::app.checkout.onepage.country') }}"">
|
||||
|
||||
<option value=""></option>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<accordian :title="'{{ __('shop::app.checkout.payment-methods') }}'" :active="true">
|
||||
<div class="form-header mb-30" slot="header">
|
||||
<h3 class="fw6 display-inbl">
|
||||
3. {{ __('shop::app.checkout.onepage.payment-methods') }}
|
||||
{{ __('shop::app.checkout.onepage.payment-methods') }}
|
||||
</h3>
|
||||
<i class="rango-arrow"></i>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<accordian :title="'{{ __('shop::app.checkout.onepage.summary') }}'" :active="true">
|
||||
<div class="form-header mb-30" slot="header">
|
||||
<h3 class="fw6 display-inbl">
|
||||
4. {{ __('shop::app.checkout.onepage.summary') }}
|
||||
{{ __('shop::app.checkout.onepage.summary') }}
|
||||
</h3>
|
||||
<i class="rango-arrow"></i>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<accordian :title="'{{ __('shop::app.checkout.onepage.shipping-method') }}'" :active="true">
|
||||
<div class="form-header" slot="header">
|
||||
<h3 class="fw6 display-inbl">
|
||||
2. {{ __('shop::app.checkout.onepage.shipping-method') }}
|
||||
{{ __('shop::app.checkout.onepage.shipping-method') }}
|
||||
</h3>
|
||||
<i class="rango-arrow"></i>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue