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.
23 lines
452 B
23 lines
452 B
import http from '../common/axios.js'
|
|
|
|
//全部api接口
|
|
export default {
|
|
//教师端登陆
|
|
personnelLogin(data = {}) {
|
|
let url = '/personnelLogin'
|
|
return http.post(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
//修改销售人员详情
|
|
memberEdit(data = {}) {
|
|
let url = '/member/member_edit'
|
|
return http.post(url, data).then(res => {
|
|
return res;
|
|
})
|
|
},
|
|
|
|
|
|
|
|
}
|