城阳工作端公众号前端代码
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.
 
 
 
 
 

30 lines
483 B

import api from './index'
// axios
import request from '@/utils/request'
// 登录
export function login(data) {
return request({
url: api.Login,
method: 'post',
data
})
}
// 用户信息 post 方法
export function getUserInfo(data) {
return request({
url: api.UserInfo,
method: 'get',
data,
})
}
// 用户名称 get 方法
export function getCustomerlist(data) {
return request({
url: api.Customerlist,
method: 'post',
data,
})
}