gyq_utils.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. var storage = require('../common/storage.js');
  2. function srcFn(url, isLogin) {
  3. if (isLogin && !storage.getUserToken()) {
  4. uni.navigateTo({
  5. url: '/pages/loginRegister/login'
  6. })
  7. return
  8. }
  9. uni.navigateTo({
  10. url,
  11. })
  12. }
  13. async function location() {
  14. const storedLocation = storage.getUserCurrentLocation()
  15. try {
  16. let data = await locationAsync()
  17. storage.setUserCurrentLocation({
  18. longitude: data.longitude,
  19. latitude: data.latitude
  20. })
  21. return data
  22. } catch (error) {
  23. return storedLocation
  24. }
  25. }
  26. function locationAsync() {
  27. return new Promise((resolve, reject) => {
  28. uni.getLocation({
  29. success(res) {
  30. resolve(res)
  31. },
  32. fail(err) {
  33. reject(err)
  34. }
  35. })
  36. })
  37. }
  38. function msg(str) {
  39. uni.showToast({
  40. title: str,
  41. icon: 'none'
  42. })
  43. }
  44. function checkLocationPermissionH5() {
  45. return new Promise((resolve) => {
  46. if (navigator.permissions) {
  47. navigator.permissions.query({ name: 'geolocation' }).then((result) => {
  48. resolve(result.state === 'granted'); // granted 表示已授权
  49. });
  50. } else {
  51. // 兼容旧版本浏览器:直接尝试获取位置,通过错误判断
  52. navigator.geolocation.getCurrentPosition(
  53. () => resolve(true),
  54. (error) => resolve(error.code === error.PERMISSION_DENIED ? false : true)
  55. );
  56. }
  57. });
  58. }
  59. function checkLocationPermissionMP() {
  60. return new Promise((resolve) => {
  61. uni.getSetting({
  62. success: (res) => {
  63. // 微信小程序的权限字段为 'scope.userLocation'
  64. const hasPermission = res.authSetting['scope.userLocation'] === true;
  65. resolve(hasPermission);
  66. },
  67. fail: () => resolve(false)
  68. });
  69. });
  70. }
  71. function checkLocationPermissionApp() {
  72. return new Promise((resolve) => {
  73. uni.getSetting({
  74. success: (res) => {
  75. // Android/iOS 的权限字段可能不同,需实测确认
  76. const hasPermission = res.authSetting['scope.userLocation'] === true;
  77. resolve(hasPermission);
  78. },
  79. fail: () => resolve(false)
  80. });
  81. });
  82. }
  83. function checkLocationPermission() {
  84. return new Promise((resolve) => {
  85. // #ifdef H5
  86. checkLocationPermissionH5().then(resolve);
  87. // #endif
  88. // #ifdef MP-WEIXIN
  89. checkLocationPermissionMP().then(resolve);
  90. // #endif
  91. // #ifdef APP-PLUS
  92. checkLocationPermissionApp().then(resolve);
  93. // #endif
  94. });
  95. }
  96. export default {
  97. install: function(vm) {
  98. vm.prototype.$srcFn = srcFn;
  99. vm.prototype.$msg = msg;
  100. vm.prototype.$location = location;
  101. vm.prototype.$checkLocationPermission = checkLocationPermission;
  102. },
  103. };