Remove console.log.
This commit is contained in:
parent
187bbd228b
commit
fb45136182
2 changed files with 0 additions and 4 deletions
|
|
@ -57,7 +57,6 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
set: function (newValue) {
|
set: function (newValue) {
|
||||||
console.log("SET ", newValue);
|
|
||||||
this.$emit("update:modelValue", newValue);
|
this.$emit("update:modelValue", newValue);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
@ -93,7 +92,6 @@ export default {
|
||||||
matches.push(company.accountName);
|
matches.push(company.accountName);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
console.log("matches: ", matches);
|
|
||||||
response(matches);
|
response(matches);
|
||||||
},
|
},
|
||||||
selectParentAccountNumber(parentAccountName) {
|
selectParentAccountNumber(parentAccountName) {
|
||||||
|
|
|
||||||
|
|
@ -69,8 +69,6 @@ export default {
|
||||||
];
|
];
|
||||||
|
|
||||||
const resultMap = await settleAllPromises(promiseResultMap);
|
const resultMap = await settleAllPromises(promiseResultMap);
|
||||||
|
|
||||||
console.log("originalList: ", resultMap.insuranceCompanyList);
|
|
||||||
|
|
||||||
// Call the "next" function to complete the transition to this page.
|
// Call the "next" function to complete the transition to this page.
|
||||||
next((vm) => {
|
next((vm) => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue