讲师管理bug

This commit is contained in:
zhangsir
2025-01-09 14:25:35 +08:00
parent a375c6922e
commit b7e96d47c7
2 changed files with 52 additions and 13 deletions

View File

@@ -97,3 +97,7 @@ export const isConfirm = (obj) => http.post('/admin/expenseBill/isConfirm',obj)
export const parentList = () => http.get('/admin/affiliation/parentList')
//讲师级别获取
export const getAllLevelList = () => http.get('/admin/system/getAllLevelList')
//删除讲师费
export const deleteLecturerFee = (obj) => http.post(`/admin/teacherExpense/delById?id=${obj.id}`,obj)
//停用/启用讲师费
export const updateLecturerFee = (obj) => http.post(`/admin/teacherExpense/isEnable?id=${obj.id}&status=${obj.status}`,obj)