康巴易测肤/伤疤uniapp小程序类
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. const TokenKey = 'adminToken';
  2. export function getToken() {
  3. return uni.getStorageSync(TokenKey)
  4. }
  5. export function setToken(token) {
  6. return uni.setStorageSync(TokenKey, token)
  7. }
  8. export function removeToken() {
  9. return uni.removeStorageSync(TokenKey)
  10. }