Cloudlog/assets/js/sections/maintenance.js

13 行
269 B
JavaScript

2023-08-01 16:22:06 +08:00
function reassign(call,target_profile_id) {
$.ajax({
url: base_url + 'index.php/maintenance/reassign',
type: 'post',
data: {'call': call, 'station_id': target_profile_id},
success: function (resu) {
if (resu.status) {
location.reload();
}
}
});
}