You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
274 B

  1. import upload from '@/utils/upload'
  2. import request from '@/utils/request'
  3. // 查询伴宠师列表
  4. export function getTeacherList(params) {
  5. return request({
  6. url: '/applet/mall/teacher/getTeacherList',
  7. headers: {
  8. "isToken": true
  9. },
  10. method: 'get',
  11. params
  12. })
  13. }