weipengfei d06a841a59 更新
2024-03-29 15:17:12 +08:00

53 lines
969 B
JavaScript

import {
getUserInfo,
Appversion
} from "../../api/user.js";
import {
LOGIN_STATUS,
UID,
USER_INFO
} from '../../config/cache';
import Cache from '../../utils/cache';
const state = {
storage: {},
location: uni.getStorageSync('S_location') || {
lat: null,
long: null,
},
address: uni.getStorageSync('S_address') || {
street_id: '',
townName: '未开启定位'
}
};
const mutations = {
setStorage(state, data) {
state.storage = data;
},
setLocation(state, data){
state.location.lat = data.lat;
state.location.long = data.long;
uni.setStorageSync('S_location', {
lat: data.lat,
long: data.long
})
},
setAddress(state, data){
state.address.street_id = data.street_id;
state.address.townName = data.townName;
uni.setStorageSync('S_address', {
street_id: data.street_id,
townName: data.townName
})
}
};
const actions = {
};
export default {
state,
mutations,
actions
};