jiangping
2023-08-25 282e032b5771da13d224214d3b0b71f3efde9a42
h5_standard/src/apis/index.ts
@@ -20,7 +20,16 @@
    })
}
// 微信端登录
// 微信小程序登录
export function wxProgramLogin(params: any): Promise<any> {
    return httpRequest({
        url: '/system/wxProgramLogin',
        method: 'get',
        params
    })
}
// 微信公众号登录
export function wxAccountLogin(data: any): Promise<any> {
    return httpRequest({
        url: '/system/wxAccountLogin',
@@ -29,6 +38,15 @@
    })
}
// 微信退出登录
export function wxLoginOut(data: any): Promise<any> {
    return httpRequest({
        url: '/system/wxLoginOut',
        method: 'post',
        data
    })
}
// 获取企业id
export function getDingdingCorpId(companyId: any): Promise<any> {
    return httpRequest({