CSR-1392
prettier
This commit is contained in:
parent
c6bc872b05
commit
d072f2d27e
1 changed files with 7 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit" ref="theForm" v-slot="{ meta }">
|
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit" ref="theForm" v-slot="{ meta }">
|
||||||
<div class="page-container-grouped-styles">
|
<div class="page-container-grouped-styles">
|
||||||
<loadingModal ref="loadingModal" />
|
<loadingModal ref="loadingModal" />
|
||||||
<funnelHeader cmsWidgetName="FunnelHeaderWidget" />
|
<funnelHeader cmsWidgetName="FunnelHeaderWidget" />
|
||||||
|
|
@ -21,7 +21,12 @@
|
||||||
</div>
|
</div>
|
||||||
</Form>
|
</Form>
|
||||||
|
|
||||||
<form ref="myForm" id="card-data" :target="paymentType=='pp' ? '_top' : 'card-frame'" method="POST" :action="checkoutUrl">
|
<form
|
||||||
|
ref="myForm"
|
||||||
|
id="card-data"
|
||||||
|
:target="paymentType == 'pp' ? '_top' : 'card-frame'"
|
||||||
|
method="POST"
|
||||||
|
:action="checkoutUrl">
|
||||||
<input type="hidden" name="paymentType" :value="paymentType" />
|
<input type="hidden" name="paymentType" :value="paymentType" />
|
||||||
<input type="hidden" name="sgSessionId" :value="authToken" />
|
<input type="hidden" name="sgSessionId" :value="authToken" />
|
||||||
<input type="hidden" name="sgAuthToken" :value="authToken" />
|
<input type="hidden" name="sgAuthToken" :value="authToken" />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue