import http from '../common/axios.js' //通用接口 export default { //获取字典数据 getDictionary(data) { let url = `/member/dictionary/type/${data}` return http.get(url,data).then(res => { return res; }) }, //获取消息列表 getContactMessage(data) { let url = `/member/contact_message` return http.get(url,data).then(res => { return res; }) }, //获取课程头日期 getDate(data) { let url = '/member/get_date' return http.get(url, data).then(res => { return res; }) }, }