Mr.Zhang
2023-08-18 1cb57919fbfd5ccc9b0489d16391bcd4909e21f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
console.log('-----------');
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 logout() {
    return http.get(`/wechat/logout`)
}