fix: refs #7129 remove consoleLog
This commit is contained in:
parent
05d7a61468
commit
2ea87ea920
|
@ -120,7 +120,6 @@ const refreshKey = ref(0);
|
||||||
const total = computed(() => {
|
const total = computed(() => {
|
||||||
return selectedRows.value.reduce((sum, item) => sum + item.price, 0);
|
return selectedRows.value.reduce((sum, item) => sum + item.price, 0);
|
||||||
});
|
});
|
||||||
console.log('total: ', total);
|
|
||||||
|
|
||||||
const openDmsUploadDialog = async () => {
|
const openDmsUploadDialog = async () => {
|
||||||
dmsDialog.value.rowsToCreateInvoiceIn = selectedRows.value
|
dmsDialog.value.rowsToCreateInvoiceIn = selectedRows.value
|
||||||
|
|
|
@ -129,7 +129,6 @@ function confirmRemove() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function navigateToRoadmapSummary(event, row) {
|
function navigateToRoadmapSummary(event, row) {
|
||||||
console.log('row.id : ', row.id);
|
|
||||||
router.push({ name: 'RoadmapSummary', params: { id: 1 } });
|
router.push({ name: 'RoadmapSummary', params: { id: 1 } });
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue