You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
234 B
JavaScript

const TokenKey = 'Token';
export function getToken() {
return uni.getStorageSync(TokenKey);
}
export function setToken(token) {
uni.setStorageSync(TokenKey, token);
}
export function delToken() {
uni.removeStorageSync(TokenKey);
}