wechatService.ts 261 B

123456789101112
  1. /*
  2. * @Description: 微信相关 API 封装(含定位系统权限判断)
  3. * @Author: hanyu
  4. * @Date: 2020-06-17 17:24:39
  5. * @LastEditTime: 2025-01-25
  6. */
  7. export const getWXLoginCode = async () => {
  8. return await uni.login({
  9. provider: 'weixin',
  10. })
  11. }