commit
f4249f25f6
|
|
@ -289,6 +289,16 @@
|
|||
|
||||
this.disable_button = true;
|
||||
|
||||
let address = this.allAddress.forEach(address => {
|
||||
if (address.id == this.address.billing.address_id) {
|
||||
this.address.billing.address1 = [address.address1];
|
||||
}
|
||||
|
||||
if (address.id == this.address.shipping.address_id) {
|
||||
this.address.shipping.address1 = [address.address1];
|
||||
}
|
||||
});
|
||||
|
||||
this.$http.post("{{ route('shop.checkout.save-address') }}", this.address)
|
||||
.then(function(response) {
|
||||
this_this.disable_button = false;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"/js/velocity.js": "/js/velocity.js?id=d1e8a6d2c78f6d0657a7",
|
||||
"/js/velocity.js": "/js/velocity.js?id=35c906902bbed040ee39",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=612d35e452446366eef7",
|
||||
"/css/velocity.css": "/css/velocity.css?id=c93522195912f75d54dc"
|
||||
"/css/velocity.css": "/css/velocity.css?id=65eba575daf9327bd20a"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1274,18 +1274,15 @@
|
|||
i {
|
||||
color: $black-color;
|
||||
}
|
||||
|
||||
i:hover::before {
|
||||
// content: "\E93D";
|
||||
}
|
||||
}
|
||||
|
||||
.checkout-process {
|
||||
padding: 40px 20px;
|
||||
|
||||
.col-7 {
|
||||
> div {
|
||||
width: 100%;
|
||||
.col-lg-7 {
|
||||
.coupon-container,
|
||||
> div:not(:first-child) {
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ return [
|
|||
'login' => 'Login',
|
||||
'become-user' => 'Become User',
|
||||
'user-registration' => 'User Registration',
|
||||
'form-sginup-text' => 'If you are new to our store, we glab to have you as member.',
|
||||
'form-sginup-text' => 'If you are new to our store, we glad to have you as member.',
|
||||
],
|
||||
'forget-password' => [
|
||||
'login' => 'Login',
|
||||
|
|
|
|||
|
|
@ -337,6 +337,16 @@
|
|||
saveAddress: function() {
|
||||
this.disable_button = true;
|
||||
|
||||
let address = this.allAddress.forEach(address => {
|
||||
if (address.id == this.address.billing.address_id) {
|
||||
this.address.billing.address1 = [address.address1];
|
||||
}
|
||||
|
||||
if (address.id == this.address.shipping.address_id) {
|
||||
this.address.shipping.address1 = [address.address1];
|
||||
}
|
||||
});
|
||||
|
||||
this.$http.post("{{ route('shop.checkout.save-address') }}", this.address)
|
||||
.then(response => {
|
||||
this.disable_button = false;
|
||||
|
|
|
|||
|
|
@ -2,9 +2,11 @@
|
|||
<div class="form-container">
|
||||
<accordian :title="'{{ __('shop::app.checkout.payment-methods') }}'" :active="true">
|
||||
<div class="form-header mb-30" slot="header">
|
||||
|
||||
<h3 class="fw6 display-inbl">
|
||||
{{ __('shop::app.checkout.onepage.payment-methods') }}
|
||||
</h3>
|
||||
|
||||
<i class="rango-arrow"></i>
|
||||
</div>
|
||||
|
||||
|
|
@ -17,13 +19,13 @@
|
|||
<div>
|
||||
<label class="radio-container">
|
||||
<input
|
||||
v-validate="'required'"
|
||||
type="radio"
|
||||
id="{{ $payment['method'] }}"
|
||||
name="payment[method]"
|
||||
value="{{ $payment['method'] }}"
|
||||
v-validate="'required'"
|
||||
v-model="payment.method"
|
||||
@change="methodSelected()"
|
||||
id="{{ $payment['method'] }}"
|
||||
value="{{ $payment['method'] }}"
|
||||
data-vv-as=""{{ __('shop::app.checkout.onepage.payment-method') }}"" />
|
||||
|
||||
<span class="checkmark"></span>
|
||||
|
|
|
|||
Loading…
Reference in New Issue