1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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,
- })
- },
- }
|