CSR-2130 remove commented out code
This commit is contained in:
parent
8b5f837098
commit
0d63a1f2cf
1 changed files with 0 additions and 39 deletions
|
|
@ -10,14 +10,6 @@
|
|||
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-6 col-xl-4 p-0">
|
||||
<!-- <funnelSubHeader class="mb-5 mt-4" cmsWidgetName="FunnelSubHeaderWidget" /> -->
|
||||
|
||||
<!-- <div class="text-center">
|
||||
<img :src="ApplePayImage" class="payment-buttons" alt="apple pay" />
|
||||
<img :src="PayPalImage" class="payment-buttons" alt="paypal" />
|
||||
</div>
|
||||
|
||||
<paymentMethodQuestion v-model="paymentMethodInternalModel" /> -->
|
||||
|
||||
<div>
|
||||
<alert
|
||||
|
|
@ -209,12 +201,10 @@
|
|||
<script>
|
||||
// Components
|
||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||
//import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
||||
import loadingModal from "@/fmg-components/loading-modal/loading-modal.vue";
|
||||
import cart from "@/fmg-components/cart/cart";
|
||||
import alert from "@/ux-components/alert/alert";
|
||||
// import paymentMethodQuestion from "@/layouts/payment-method/payment-method-question/payment-method-question";
|
||||
|
||||
import { storeActions } from "@/constants/store-actions";
|
||||
import store from "@/store";
|
||||
|
|
@ -270,8 +260,6 @@ export default {
|
|||
lineItems: [],
|
||||
availableVaps: [],
|
||||
shouldBlockInteraction: false,
|
||||
//paymentMethodInternalModel: this.getPaymentMethodFromStore(),
|
||||
//showIframe: false,
|
||||
};
|
||||
},
|
||||
directives: {
|
||||
|
|
@ -418,22 +406,7 @@ export default {
|
|||
});
|
||||
});
|
||||
},
|
||||
// watch: {
|
||||
// async paymentMethodInternalModel(paymentMethod) {
|
||||
// if (paymentMethod === paymentMethods.CREDIT_CARD) {
|
||||
// this.showIframe = true;
|
||||
// } else {
|
||||
// this.showIframe = false;
|
||||
// }
|
||||
// },
|
||||
// },
|
||||
computed: {
|
||||
// ApplePayImage() {
|
||||
// return this.getCmsContent("ApplePayWidget", "Image");
|
||||
// },
|
||||
// PayPalImage() {
|
||||
// return this.getCmsContent("PayPalWidget", "Image");
|
||||
// },
|
||||
parentNomainName() {
|
||||
var a = document.createElement("a");
|
||||
a.href = applicationConfig.HERITAGE_FUNNEL;
|
||||
|
|
@ -508,9 +481,6 @@ export default {
|
|||
shouldDisplayPiaAPAlert() {
|
||||
return this.shouldDisplayPiaAlert(paymentMethods.AFTERPAY);
|
||||
},
|
||||
// paymentMethod() {
|
||||
// return this.paymentMethodInternalModel;
|
||||
// },
|
||||
},
|
||||
methods: {
|
||||
arePagePrerequisitesValid() {
|
||||
|
|
@ -570,9 +540,6 @@ export default {
|
|||
paymentMethodReqs
|
||||
);
|
||||
},
|
||||
// getPaymentMethodFromStore() {
|
||||
// return store.getters.order.payment.piaType;
|
||||
// },
|
||||
getWOrkOrderNumber() {
|
||||
if (store.getters.order.workOrderNumber) {
|
||||
const items = store.getters.order.workOrderNumber.split("-");
|
||||
|
|
@ -764,8 +731,6 @@ export default {
|
|||
},
|
||||
components: {
|
||||
funnelHeader,
|
||||
//funnelSubHeader,
|
||||
// paymentMethodQuestion,
|
||||
navbar,
|
||||
loadingModal,
|
||||
cart,
|
||||
|
|
@ -775,10 +740,6 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
// .payment-buttons {
|
||||
// cursor: pointer;
|
||||
// padding-right: 10px;
|
||||
// }
|
||||
.hop-iframe {
|
||||
position: relative;
|
||||
min-height: 650px;
|
||||
|
|
|
|||
Loading…
Reference in a new issue