baizonghao
2023-07-31 756f7b9188d459e5ac959248cfe543819c311f6e
1
2
3
4
5
6
7
8
import { post } from '@/utils/request'
 
export default {
  list: query => post('/api/teacher/education/subject/list'),
  pageList: query => post('/api/teacher/education/subject/page', query),
  edit: query => post('/api/teacher/education/subject/edit', query),
  select: id => post('/api/teacher/education/subject/select/' + id)
}