gyq_utils.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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 htmlData(str){
  27. return str.replace(/\<img/gi, '<img style="width:100%;height:auto;display:block" ')
  28. }
  29. function locationAsync() {
  30. return new Promise((resolve, reject) => {
  31. uni.getLocation({
  32. success(res) {
  33. resolve(res)
  34. },
  35. fail(err) {
  36. reject(err)
  37. }
  38. })
  39. })
  40. }
  41. function msg(str) {
  42. uni.showToast({
  43. title: str,
  44. icon: 'none'
  45. })
  46. }
  47. function checkLocationPermissionH5() {
  48. return new Promise((resolve) => {
  49. if (navigator.permissions) {
  50. navigator.permissions.query({ name: 'geolocation' }).then((result) => {
  51. resolve(result.state === 'granted'); // granted 表示已授权
  52. });
  53. } else {
  54. // 兼容旧版本浏览器:直接尝试获取位置,通过错误判断
  55. navigator.geolocation.getCurrentPosition(
  56. () => resolve(true),
  57. (error) => resolve(error.code === error.PERMISSION_DENIED ? false : true)
  58. );
  59. }
  60. });
  61. }
  62. function checkLocationPermissionMP() {
  63. return new Promise((resolve) => {
  64. uni.getSetting({
  65. success: (res) => {
  66. // 微信小程序的权限字段为 'scope.userLocation'
  67. const hasPermission = res.authSetting['scope.userLocation'] === true;
  68. resolve(hasPermission);
  69. },
  70. fail: () => resolve(false)
  71. });
  72. });
  73. }
  74. function checkLocationPermissionApp() {
  75. return new Promise((resolve) => {
  76. uni.getSetting({
  77. success: (res) => {
  78. // Android/iOS 的权限字段可能不同,需实测确认
  79. const hasPermission = res.authSetting['scope.userLocation'] === true;
  80. resolve(hasPermission);
  81. },
  82. fail: () => resolve(false)
  83. });
  84. });
  85. }
  86. function checkLocationPermission() {
  87. return new Promise((resolve) => {
  88. // #ifdef H5
  89. checkLocationPermissionH5().then(resolve);
  90. // #endif
  91. // #ifdef MP-WEIXIN
  92. checkLocationPermissionMP().then(resolve);
  93. // #endif
  94. // #ifdef APP-PLUS
  95. checkLocationPermissionApp().then(resolve);
  96. // #endif
  97. });
  98. }
  99. function paramsObj(url){
  100. if(url.indexOf("https://zx.uwenya.cc/xcx/s") == -1){
  101. return {}
  102. }
  103. // 1. 提取参数部分
  104. const queryString = url.split('?')[1] || '';
  105. // 2. 解析为对象
  106. const params = {};
  107. queryString.split('&').forEach(pair => {
  108. const [key, value] = pair.split('=');
  109. if (key) {
  110. params[key] = decodeURIComponent(value || '');
  111. }
  112. });
  113. return params
  114. }
  115. export default {
  116. install: function(vm) {
  117. vm.prototype.$paramsObj = paramsObj;
  118. vm.prototype.$srcFn = srcFn;
  119. vm.prototype.$msg = msg;
  120. vm.prototype.$location = location;
  121. vm.prototype.$checkLocationPermission = checkLocationPermission;
  122. vm.prototype.$htmlData = htmlData;
  123. },
  124. };