Untitled
unknown
plain_text
a year ago
540 B
5
Indexable
export function updateKhoaDiemHocPhan(data, done) {
return async () => {
try {
const url = '/api/sdh/khoa-diem-hoc-phan';
let res = await T.async.put(url, { data });
T.notify('Cập nhật khoá điểm học phần thành công', 'success');
done && done(res);
}
catch (error) {
T.notify(`Cập nhật khoá điểm học phần bị lỗi ${error.message && (':<br>' + error.message)}`, 'danger');
console.error(error);
}
};
}Editor is loading...
Leave a Comment