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`) 
 | 
} 
 |