Merge pull request #2342 from Safelite/Feature/Digital/CASH-323
CASH-323
This commit is contained in:
commit
392475caee
3 changed files with 14 additions and 4 deletions
|
|
@ -61,11 +61,11 @@
|
|||
<div class="col-12">
|
||||
<div
|
||||
v-if="showDonationSuccess"
|
||||
class="d-flex justify-content-center align-items-center btn-success w-100 mb-2"
|
||||
class="d-flex justify-content-center align-items-center btn-success w-100"
|
||||
v-html="DonationThanksAlertWidget"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row px-4">
|
||||
<div class="row px-4 mt-2">
|
||||
<div class="col">
|
||||
<alert
|
||||
v-if="showDonationError"
|
||||
|
|
@ -142,7 +142,7 @@ export default {
|
|||
|
||||
<style lang="scss" scoped>
|
||||
.donation-block {
|
||||
padding: 1rem 0;
|
||||
padding: 1rem 0 0 0;
|
||||
background-color: $gray-100;
|
||||
border-radius: 0;
|
||||
|
||||
|
|
|
|||
|
|
@ -128,6 +128,7 @@
|
|||
{{ insuranceCompanyName }}
|
||||
</div>
|
||||
<promoModalQuestion
|
||||
v-if="showPromoModalQuestion"
|
||||
ref="promoModalQuestion"
|
||||
class="small mt-4"
|
||||
v-model="lineItems"
|
||||
|
|
@ -200,6 +201,11 @@ export default {
|
|||
isItac: Boolean,
|
||||
isNoComp: Boolean,
|
||||
isExpandedOnLoad: Boolean,
|
||||
showPromoModalQuestion: {
|
||||
default: true,
|
||||
type: Boolean,
|
||||
required: false,
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
|
|
|||
|
|
@ -62,7 +62,8 @@
|
|||
:shouldHideRecalibration="shouldHideRecalibration"
|
||||
:isExpandedOnLoad="false"
|
||||
:isItac="isItac"
|
||||
:isNoComp="isNoComp" />
|
||||
:isNoComp="isNoComp"
|
||||
:showPromoModalQuestion="ShowPromoModalQuestion" />
|
||||
|
||||
<div class="mt-3" v-if="DisplayFosterLove">
|
||||
<donationBlock
|
||||
|
|
@ -248,6 +249,9 @@ export default {
|
|||
"true"
|
||||
);
|
||||
},
|
||||
ShowPromoModalQuestion() {
|
||||
return false;
|
||||
},
|
||||
isRecalibrationOnOrder() {
|
||||
return containsRecalParts(this?.lineItems);
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue