updated provider preference modal
This commit is contained in:
parent
92f4da0852
commit
d56b963b45
2 changed files with 18 additions and 3 deletions
|
|
@ -14,7 +14,7 @@
|
||||||
v-html="ProviderPreferenceBodyText"
|
v-html="ProviderPreferenceBodyText"
|
||||||
class="mt-0 body-text"
|
class="mt-0 body-text"
|
||||||
></div>
|
></div>
|
||||||
<shoppreferenceModal cmsWidgetName="ShopPreferenceDrawer" />
|
|
||||||
<buttonQuestion
|
<buttonQuestion
|
||||||
cmsWidgetName="ServiceLocationQuestion"
|
cmsWidgetName="ServiceLocationQuestion"
|
||||||
:questionText="questionText"
|
:questionText="questionText"
|
||||||
|
|
@ -38,15 +38,19 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<contentGroupModal cmsWidgetName="ShopPreferenceDrawer"
|
||||||
|
ref="ShopPreferenceDrawer"
|
||||||
|
/>
|
||||||
</Form>
|
</Form>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
// Import Supporting Files
|
// Import Supporting Files
|
||||||
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
|
import { fetchCmsContentForPage, setupModalLinks } from '@/helpers/cms-content-helper';
|
||||||
import { settleAllPromises } from "@/helpers/layout-helper";
|
import { settleAllPromises } from "@/helpers/layout-helper";
|
||||||
import { required } from "@/helpers/validation-rules";
|
import { required } from "@/helpers/validation-rules";
|
||||||
import { errorMessages } from "@/constants/error-messages";
|
import { errorMessages } from "@/constants/error-messages";
|
||||||
import buttonQuestion from "@/digital-components/button-question/button-question";
|
import buttonQuestion from "@/digital-components/button-question/button-question";
|
||||||
|
import contentGroupModal from "@/iss-components/content-group-modal/content-group-modal"
|
||||||
|
|
||||||
// Import Component
|
// Import Component
|
||||||
import baseFormMixin from "@/mixins/base-form-mixin";
|
import baseFormMixin from "@/mixins/base-form-mixin";
|
||||||
|
|
@ -68,7 +72,8 @@ export default {
|
||||||
siteSubHeader,
|
siteSubHeader,
|
||||||
Form,
|
Form,
|
||||||
shoppreferenceModal,
|
shoppreferenceModal,
|
||||||
buttonQuestion
|
buttonQuestion,
|
||||||
|
contentGroupModal
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
@ -124,6 +129,9 @@ export default {
|
||||||
},
|
},
|
||||||
resetDependentState() {},
|
resetDependentState() {},
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
setupModalLinks(this);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
|
|
||||||
|
|
@ -63,4 +63,11 @@ body {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.modal-text {
|
||||||
|
display: inline;
|
||||||
|
color: $blue;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue