7135f7ab by joe

1

1 parent ad334589
...@@ -367,9 +367,11 @@ export default { ...@@ -367,9 +367,11 @@ export default {
367 this.policyIllegal = false; 367 this.policyIllegal = false;
368 } else { 368 } else {
369 this.policyIllegal = true; 369 this.policyIllegal = true;
370 if (this.data.contactDate) {
370 this.$emit("showModal", { action: 1, type: 2 }); 371 this.$emit("showModal", { action: 1, type: 2 });
371 } 372 }
372 } 373 }
374 }
373 }, 375 },
374 insuredChange() { 376 insuredChange() {
375 this.typeSelected = []; 377 this.typeSelected = [];
......
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
103 <div class="down-arrow"></div> 103 <div class="down-arrow"></div>
104 <div class="cont"> 104 <div class="cont">
105 <div class="ipt-date"> 105 <div class="ipt-date">
106 <date-picker v-model="data.contactDate" :pluginActivity="pluginActivityHandler" :formatter="'dd-MM-yyyy'" :filtModel="['future']" :check="checkDate" :readonly="true" :cusStyle="{border:'none !important','background-color':'transparent !important','height':'58px', 'color':'#ff6839','font-weight':'bold','text-align': 'center'}"></date-picker> 106 <date-picker v-model="data.contactDate" :pluginActivity="pluginActivityHandler" :formatter="'dd-MM-yyyy'" :filtModel="['future','today']" :check="checkDate" :readonly="true" :cusStyle="{border:'none !important','background-color':'transparent !important','height':'58px', 'color':'#ff6839','font-weight':'bold','text-align': 'center'}"></date-picker>
107 </div> 107 </div>
108 </div> 108 </div>
109 </div> 109 </div>
......