12 lines
347 B
JavaScript
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);
|
|
}
|
|
});
|
|
} |