plan.js 1.5 KB

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