import { myRequest } from '../request.js' export default { noteList(data) { return myRequest({ url: '/user/note/listDate', method: 'get', data: data }) }, postNote(data) { return myRequest({ url: '/user/note', method: 'post', data: data }) }, delNote(data) { return myRequest({ url: '/user/note/edit', method: 'post', data: data }) }, consultationlist(data) { return myRequest({ url: '/app/consultation/list', method: 'get', data: data, noToken: true, }) }, consultationdetails(data) { return myRequest({ url: `/app/consultation/details/` + data, method: 'get', noToken: true, }) }, }