dealhub/resources/js/admin-deals.js
kusowl 0789c21100 feature(deal approval): admin can approve the deals
- admin can see the deal details in modal
- admin can approve or delete the deals
2026-01-28 18:21:48 +05:30

13 lines
358 B
JavaScript

import {showDealModal} from "./deal-view-modal.js";
const table = document.querySelector('.ui-table')
if (table) {
const btns = table.querySelectorAll('.view-deal-btn');
btns.forEach(btn => {
btn.addEventListener('click', async () => {
let dealId = btn.dataset.dealId;
await showDealModal(dealId)
})
})
}