This commit is contained in:
shivam kumar 2020-02-05 20:53:39 +05:30
parent 0e0ecda0d9
commit 24fcdd006b
6 changed files with 11 additions and 5 deletions

View File

@ -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();

View File

@ -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')

View File

@ -366,6 +366,7 @@
v-validate="'required'"
class="control styled-select"
v-model="address.billing.country"
@change="validateForm('address-form')"
data-vv-as="&quot;{{ __('shop::app.checkout.onepage.country') }}&quot;">
<option value=""></option>

View File

@ -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>

View File

@ -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>

View File

@ -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>