fix: mode

This commit is contained in:
Ron
2025-06-03 20:32:34 +03:00
parent b3651e7f43
commit 0437ba6462
3 changed files with 215 additions and 181 deletions

View File

@@ -181,9 +181,6 @@
v-model="showModal"
:selected-interest="selectedInterest"
@save="handleSaveInterest"
@request-more-info-to-sales="handleRequestMoreInfoToSales"
@request-more-information="handleRequestMoreInformation"
@eoi-send-to-sales="handleEoiSendToSales"
/>
</div>
</template>
@@ -234,21 +231,6 @@ const handleSaveInterest = async (interest: Interest) => {
loading.value = false;
};
const handleRequestMoreInfoToSales = (interest: Interest) => {
// The modal component already handles the API call
// You can add additional logic here if needed
};
const handleRequestMoreInformation = (interest: Interest) => {
// The modal component already handles the API call
// You can add additional logic here if needed
};
const handleEoiSendToSales = (interest: Interest) => {
// The modal component already handles the API call
// You can add additional logic here if needed
};
const headers = [
{ title: "Contact", key: "Full Name", sortable: true, width: "25%" },
{ title: "Yacht", key: "Yacht Name", sortable: true },

View File

@@ -147,9 +147,6 @@
v-model="showModal"
:selected-interest="selectedInterest"
@save="handleSaveInterest"
@request-more-info-to-sales="handleRequestMoreInfoToSales"
@request-more-information="handleRequestMoreInformation"
@eoi-send-to-sales="handleEoiSendToSales"
/>
</template>
@@ -288,21 +285,6 @@ const handleSaveInterest = (interest: Interest) => {
// You can add additional logic here if needed
};
const handleRequestMoreInfoToSales = (interest: Interest) => {
// The modal component already handles the API call
// You can add additional logic here if needed
};
const handleRequestMoreInformation = (interest: Interest) => {
// The modal component already handles the API call
// You can add additional logic here if needed
};
const handleEoiSendToSales = (interest: Interest) => {
// The modal component already handles the API call
// You can add additional logic here if needed
};
// Drag and Drop handlers
const handleDragStart = (event: DragEvent, interest: Interest) => {
draggedInterest.value = interest;