53 lines
969 B
JavaScript
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
|
|
}; |