| 1234567891011121314151617 |
- import request from '@/sheep/request';
- const technicianListAPI = {
- // 发送验证码
- getTechnicianData: (params) => {
- return request({
- url: '/client/coach',
- method: 'get',
- params,
- custom: {
- showSuccess: true,
- loadingMsg: '技师列表...',
- },
- });
- },
- }
- export default technicianListAPI
|