upgraded for new changes
This commit is contained in:
@@ -146,6 +146,7 @@ const logout = () => {
|
||||
localStorage.removeItem("selectedSidebarMenu");
|
||||
localStorage.removeItem("plan_name");
|
||||
localStorage.removeItem("plan_price");
|
||||
localStorage.removeItem("getCalendlyAvailableTImes");
|
||||
if (currentUser.value == "agent") {
|
||||
router.push("/provider/login");
|
||||
} else {
|
||||
|
@@ -1,14 +1,21 @@
|
||||
<script setup>
|
||||
import axios from '@axios';
|
||||
const seetingFooterText = ref();
|
||||
const constact = () => {
|
||||
// window.open('/terms-and-conditions', '_blank');
|
||||
window.open('https://purityselect.com/contact/')
|
||||
};
|
||||
const gotoTermsCondition = () => {
|
||||
window.open('/terms-and-conditions', '_blank');
|
||||
// window.open('/terms-and-conditions', '_blank');
|
||||
window.open('https://purityselect.com/terms-and-condition/')
|
||||
};
|
||||
const gotoPrivacyPolicy = () => {
|
||||
window.open('/privacy-policy', '_blank');
|
||||
// window.open('/privacy-policy', '_blank');
|
||||
window.open('https://purityselect.com/privacy-policy/')
|
||||
};
|
||||
const gotoRefundPolicy = () => {
|
||||
window.open('/refund-policy', '_blank');
|
||||
// window.open('/refund-policy', '_blank');
|
||||
window.open('https://purityselect.com/refund-and-return-policy/')
|
||||
};
|
||||
onMounted(async () => {
|
||||
|
||||
@@ -25,7 +32,7 @@ onMounted(async () => {
|
||||
</span>
|
||||
<!-- 👉 Footer: right content -->
|
||||
<div class="d-flex align-center">
|
||||
<a type="button" class="mr-3 ">Contact Us</a>
|
||||
<a type="button" class="mr-3 " @click="constact()">Contact Us</a>
|
||||
<a type="button" class="mr-3 " @click="gotoTermsCondition()">Terms & Conditions</a>
|
||||
<a type="button" class="mr-3 " @click="gotoPrivacyPolicy()">Privacy Policy</a>
|
||||
<a type="button" class="" @click="gotoRefundPolicy()">Refund Policy</a>
|
||||
|
@@ -16,7 +16,7 @@ const props = defineProps({
|
||||
<v-spacer></v-spacer>
|
||||
|
||||
<!-- Links on the right -->
|
||||
<v-btn text color="white" href="#">Live Chat</v-btn>
|
||||
<!-- <v-btn text color="black" href="#">Live Chat</v-btn> -->
|
||||
<v-btn text color="white" href="https://purityselect.com/contact/" target="_blank">Contact Us</v-btn>
|
||||
</v-app-bar>
|
||||
|
||||
|
Reference in New Issue
Block a user