index.js 874 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // 页面路径:store/index.js
  2. import Vue from 'vue'
  3. import Vuex from 'vuex'
  4. Vue.use(Vuex); //vue的插件机制
  5. //Vuex.Store 构造器选项
  6. const store = new Vuex.Store({
  7. state: { //存放状态
  8. config: {},
  9. city: '',
  10. popularity: 0,
  11. // 定位数据
  12. citydata: {
  13. city: "",
  14. userLocation: '',
  15. city_id: ''
  16. },
  17. // 默认数据(当前数据)
  18. defaultcity: {
  19. city: "",
  20. userLocation: '',
  21. city_id: ''
  22. }
  23. },
  24. getters: {
  25. config: state => state.config
  26. },
  27. mutations: {
  28. setconfig(state, data) {
  29. // 变更状态
  30. state.config = data
  31. },
  32. setcity(state, data) {
  33. // 变更状态
  34. state.citydata = data
  35. },
  36. setdefaultcity(state, data) {
  37. // 变更状态
  38. uni.setStorageSync("city", data)
  39. state.defaultcity = data
  40. },
  41. setpopularity(state, data) {
  42. // 变更状态
  43. state.popularity = data
  44. }
  45. }
  46. })
  47. export default store