JS-Part for maintenance

这个提交包含在:
int2001 2023-08-01 08:22:06 +00:00
父节点 1158bf312e
当前提交 ae394dfce9
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B

查看文件

@ -0,0 +1,12 @@
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();
}
}
});
}