index.js 685 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * 权限入口文件
  3. * @param {String} authType -权限种类
  4. */
  5. // #ifdef MP
  6. import MpAuth from './mp.js' //微信小程序
  7. // #endif
  8. // #ifdef H5
  9. import H5Auth from './h5.js' //H5相关
  10. // #endif
  11. // #ifdef APP-VUE
  12. import AppAuth from './app.js' //APP相关
  13. // #endif
  14. export default class Auth {
  15. constructor(authType) {
  16. this.authType = authType
  17. }
  18. async check() {
  19. let state = 0
  20. // #ifdef MP
  21. state = await new MpAuth(this.authType).checkAuth()
  22. // #endif
  23. // #ifdef H5
  24. state = await new H5Auth(this.authType).checkAuth()
  25. // #endif
  26. // #ifdef APP-VUE
  27. state = await new AppAuth(this.authType).checkAuth()
  28. // #endif
  29. return Promise.resolve(state)
  30. }
  31. }