NonInventPurchasingSystem/CPRNIMS.WebApps/wwwroot/JsFunctions/Common/ComponentId.js
2026-01-20 07:44:30 +08:00

12 lines
347 B
JavaScript

function poIndexComponent() {
return $.ajax({
url: "/POMgmt/GetIndexCardTable",
type: 'GET',
success: function (response) {
$('#IndexCardContainer').html(response);
},
error: function (xhr, status, error) {
console.error("Error loading component:", error);
}
});
}