43607170 by joe

1

1 parent 5586c14a
...@@ -276,7 +276,8 @@ export default { ...@@ -276,7 +276,8 @@ export default {
276 return false; 276 return false;
277 } 277 }
278 // console.log("insured === ", insured); 278 // console.log("insured === ", insured);
279 var time = new Date(this.data.contactDate.replace(/\-/g, "/") + " 00:00:00").getTime(); 279 var time = new Date(ddMMyyyy2yyyyMMdd(this.data.contactDate).replace(/\-/g, "/") + " 00:00:00").getTime();
280 // var time = new Date(this.data.contactDate.replace(/\-/g, "/") + " 00:00:00").getTime();
280 for (let index = 0; index < insured.policyInfoList.length; index++) { 281 for (let index = 0; index < insured.policyInfoList.length; index++) {
281 let policy = insured.policyInfoList[index]; 282 let policy = insured.policyInfoList[index];
282 // 有效期为生效日至满期日+60天 283 // 有效期为生效日至满期日+60天
......
...@@ -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" :formatter="'dd-MM-yyyy'" :filtModel="['future']" :check="checkDate" :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" :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>
107 </div> 107 </div>
108 </div> 108 </div>
109 </div> 109 </div>
......
...@@ -124,7 +124,7 @@ export default { ...@@ -124,7 +124,7 @@ export default {
124 this.step = 2; 124 this.step = 2;
125 }, 125 },
126 handleShowModal(model) { 126 handleShowModal(model) {
127 console.log(model); 127 // console.log(model);
128 if (model.action == 1) { 128 if (model.action == 1) {
129 this.modelType = model.type; 129 this.modelType = model.type;
130 this.showModal1 = true; 130 this.showModal1 = true;
......