@lambo-design-mobile/lambo-js-bridge 1.0.0-beta.36 → 1.0.0-beta.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,11 @@
1
1
  # Changelog
2
+ ## [1.0.0-beta.37](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/lambo-js-bridge@1.0.0-beta.36...@lambo-design-mobile/lambo-js-bridge@1.0.0-beta.37) (2025-09-04)
3
+
4
+
5
+ ### ✨ Features | 新功能
6
+
7
+ * 修复定位问题 ([534fb86](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/534fb867f34c00ceea6d32f0be598a825174ae03))
8
+
2
9
  ## [1.0.0-beta.36](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/@lambo-design-mobile/lambo-js-bridge@1.0.0-beta.35...@lambo-design-mobile/lambo-js-bridge@1.0.0-beta.36) (2025-09-04)
3
10
 
4
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design-mobile/lambo-js-bridge",
3
- "version": "1.0.0-beta.36",
3
+ "version": "1.0.0-beta.37",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -29,11 +29,12 @@ class WeComAdapter {
29
29
  });
30
30
  }
31
31
 
32
+ let self = this
32
33
  function initJsSdk() {
33
34
  loadScript('//res.wx.qq.com/open/js/jweixin-1.2.0.js')
34
35
  .then((script) => {
35
36
  console.log('Script loaded');
36
- this.init(_options);
37
+ self.init(_options);
37
38
  })
38
39
  .catch((err) => console.error(err));
39
40
  }