Mr.Zhang
2023-09-01 a52f13d719ee9cd53f129f4c59dcad783977fce9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const http = uni.$u.http
// 登录
export function coustomLogin(params) {
    return http.get('/wechat/ordinaryLogin', {params})
}
 
// 微信授权
export function wxEmpower(params) {
    return http.get('/wechat/wxEmpower', {params})
}
 
// 查询统计列表数量
export function pageCount(data) {
    return http.post('/ext/noticesExt/pageCount', data)
}
 
// 菜单数据
export function getTreeList(params) {
    return http.get('/system/menu/treeNodes', {params})
}
 
// 退出登录
export function logout() {
    return http.get(`/wechat/logout`)
}
 
// 登录
export function wxAccountLogin(data) {
    return http.post('/system/wxAccountLogin', data)
}
 
// 获取当前登录用户信息
export function getUserInfo(params) {
    return http.get('/system/getUserInfo', {params})
}