plan.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. // pages/plan/plan.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. },
  9. /**
  10. * 生命周期函数--监听页面加载
  11. */
  12. onLoad(options) {
  13. let defaultStore = {}
  14. if (options.defaultStore) {
  15. defaultStore = JSON.parse(options.defaultStore)
  16. }
  17. if (Object.keys(defaultStore).length == 0) {
  18. defaultStore = app.globalData.storeData
  19. }
  20. this.setData({
  21. defaultStore: defaultStore
  22. })
  23. },
  24. /**
  25. * 生命周期函数--监听页面初次渲染完成
  26. */
  27. onReady() {
  28. },
  29. /**
  30. * 生命周期函数--监听页面显示
  31. */
  32. onShow() {
  33. },
  34. /**
  35. * 生命周期函数--监听页面隐藏
  36. */
  37. onHide() {
  38. },
  39. /**
  40. * 生命周期函数--监听页面卸载
  41. */
  42. onUnload() {
  43. },
  44. /**
  45. * 页面相关事件处理函数--监听用户下拉动作
  46. */
  47. onPullDownRefresh() {
  48. },
  49. /**
  50. * 页面上拉触底事件的处理函数
  51. */
  52. onReachBottom() {
  53. },
  54. /**
  55. * 用户点击右上角分享
  56. */
  57. onShareAppMessage() {
  58. },
  59. toStore() {
  60. let store = this.data.defaultStore
  61. let latitude = parseFloat(store.latitude)
  62. let longitude = parseFloat(store.longitude)
  63. wx.openLocation({
  64. latitude: parseFloat(store.latitude), // 纬度,范围为-90~90,负数表示南纬
  65. longitude: parseFloat(store.longitude), // 经度,范围为-180~180,负数表示西经
  66. name: store.belong_region
  67. })
  68. }
  69. })