7135f7ab by joe

1

1 parent ad334589
...@@ -367,7 +367,9 @@ export default { ...@@ -367,7 +367,9 @@ export default {
367 this.policyIllegal = false; 367 this.policyIllegal = false;
368 } else { 368 } else {
369 this.policyIllegal = true; 369 this.policyIllegal = true;
370 this.$emit("showModal", { action: 1, type: 2 }); 370 if (this.data.contactDate) {
371 this.$emit("showModal", { action: 1, type: 2 });
372 }
371 } 373 }
372 } 374 }
373 }, 375 },
......
...@@ -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>
......