jufubao-movie 1.0.36 → 1.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-movie",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "private": false,
5
5
  "description": "聚福宝在线选座业务组件插件包",
6
6
  "main": "index.js",
@@ -303,11 +303,12 @@
303
303
  })
304
304
  },
305
305
  toMapNav(){
306
- const { latitude, longitude, address } = this.cinemaInfo;
306
+ const { latitude, longitude, address,cinema_name } = this.cinemaInfo;
307
+ console.warn(`toMapNav: ${JSON.stringify({latitude,longitude,address,cinema_name})}`);
307
308
  this.handleOpenLocation({
308
309
  latitude: latitude,
309
310
  longitude: longitude,
310
- name: '我的位置',
311
+ name: cinema_name || address,
311
312
  address: address
312
313
  })
313
314
  },