jiangping
2023-08-18 40609a1bd11ce79445562ac23f16af23a48c3933
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`)
}