fix: mode
This commit is contained in:
@@ -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 },
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user