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.
33 lines
715 B
33 lines
715 B
2 years ago
|
|
||
|
//如果用uni请求
|
||
|
import http from '@/common/uni.interface.js';
|
||
|
|
||
|
//如果是用uview请求,就用下面这句
|
||
|
//const http = uni.$u.http
|
||
|
|
||
|
|
||
|
//获取用户信息
|
||
|
export function getUserInfo(params){
|
||
|
return http.get('api/userinfo', params)
|
||
|
}
|
||
|
|
||
|
//用户登录
|
||
|
export function userLogin(params){
|
||
|
return http.post('/login', params)
|
||
|
}
|
||
|
|
||
|
export function getTaskList(params){
|
||
|
return http.post('/taskList', params)
|
||
|
}
|
||
|
|
||
|
export function logout(params){
|
||
|
return http.post('/outLogin', params)
|
||
|
}
|
||
|
export function getList(params){
|
||
|
return http.post('/taskProcedure', params)
|
||
|
}
|
||
|
//更改配置项,阻止loading提示
|
||
|
// export function getUserInfo(params){
|
||
|
// return http.post('api/login', {custom:{ShowLoading:false}})
|
||
|
// }
|