global.js 260 B

12345678910111213141516171819
  1. const state = {
  2. signState:uni.getStorageSync('signState'),
  3. userInfo:uni.getStorageSync('suserInfo'),
  4. city:"北京"
  5. }
  6. const mutations = {
  7. setCity(state, value){
  8. state.city = value
  9. }
  10. }
  11. const actions = {
  12. }
  13. export default {
  14. state,
  15. mutations,
  16. actions
  17. }