xiangpei
2024-03-26 88c2acd1b100f9b047a35b6ff0dbaa827fd08568
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)
}