getters.js 338 B

12345678910
  1. export default {
  2. // app
  3. loadingFlag: (state) => state.app.globalLoading.showLoading,
  4. loadingInfo: (state) => state.app.globalLoading.showInfo,
  5. // 位置
  6. currentCity: (state) => state.location.currentCity,
  7. detailAddress: (state) => state.location.detailAddress,
  8. obtainLocationCount: (state) => state.location.obtainLocationCount
  9. }