123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- // 页面路径:store/index.js
- import Vue from 'vue'
- import Vuex from 'vuex'
- Vue.use(Vuex); //vue的插件机制
- //Vuex.Store 构造器选项
- const store = new Vuex.Store({
- state: { //存放状态
- config: {},
- city: '',
- popularity: 0,
- // 定位数据
- citydata: {
- city: "",
- userLocation: '',
- city_id: ''
- },
- // 默认数据(当前数据)
- defaultcity: {
- city: "",
- userLocation: '',
- city_id: ''
- }
- },
- getters: {
- config: state => state.config
- },
- mutations: {
- setconfig(state, data) {
- // 变更状态
- state.config = data
- },
- setcity(state, data) {
- // 变更状态
- state.citydata = data
- },
- setdefaultcity(state, data) {
- // 变更状态
- uni.setStorageSync("city", data)
- state.defaultcity = data
- },
- setpopularity(state, data) {
- // 变更状态
- state.popularity = data
- }
- }
- })
- export default store
|